apply plugin: 'com.android.library' **APPLY_PLUGINS** android { namespace "com.unity3d.player" } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) api "com.android.support:support-v4:28.0.0" api "com.android.support:appcompat-v7:28.0.0" api "com.google.code.gson:gson:2.8.6" api "com.squareup.okio:okio:1.15.0" api "com.squareup.okhttp3:okhttp:3.12.13" api "com.squareup.retrofit2:retrofit:2.3.0" api "com.squareup.retrofit2:converter-gson:2.2.0" api "com.squareup.retrofit2:adapter-rxjava:2.1.0" api "io.reactivex:rxandroid:1.2.1" api "io.reactivex:rxjava:1.1.9" // Google Play In-App Review implementation 'com.google.android.play:review:2.0.1' implementation 'com.google.android.gms:play-services-basement:18.2.0' implementation 'androidx.fragment:fragment:1.3.6' implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.41" implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.3.41' implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.41' implementation 'org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.41' implementation 'androidx.core:core:1.8.0' implementation 'com.google.android.play:asset-delivery:2.2.2' **DEPS**} android { ndkPath "**NDKPATH**" compileSdkVersion **APIVERSION** buildToolsVersion '**BUILDTOOLS**' compileOptions { sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } defaultConfig { minSdkVersion **MINSDKVERSION** targetSdkVersion **TARGETSDKVERSION** ndk { abiFilters **ABIFILTERS** } versionCode **VERSIONCODE** versionName '**VERSIONNAME**' consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD** } lintOptions { abortOnError false } aaptOptions { noCompress = **BUILTIN_NOCOMPRESS** + unityStreamingAssets.tokenize(', ') ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~" }**PACKAGING_OPTIONS** } **IL_CPP_BUILD_SETUP** **SOURCE_BUILD_SETUP** **EXTERNAL_SOURCES**