apply plugin: 'com.android.application' apply from: 'tinker-support.gradle' dependencies { implementation project(':unityLibrary') implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation "com.android.support:multidex:1.0.3" implementation "com.tencent.bugly:nativecrashreport:latest.release" implementation "com.tencent.bugly:crashreport_upgrade:latest.release" implementation "com.tencent.tinker:tinker-android-lib:latest.release" implementation "androidx.appcompat:appcompat:1.3.0" implementation 'androidx.core:core-ktx:1.6.0' implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation "com.squareup.okhttp3:okhttp:4.9.0" implementation "io.coil-kt:coil:1.3.2" implementation(name: 'sdklibrary-release', ext: 'aar') } android { compileSdkVersion 30 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } defaultConfig { minSdkVersion 22 targetSdkVersion 30 applicationId 'com.ouj.paoku' ndk { abiFilters 'armeabi-v7a' } versionCode 10104 versionName '1.1.4' } aaptOptions { noCompress = ['.unity3d', '.ress', '.resource', '.obb'] ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~" } lintOptions { abortOnError false } signingConfigs { release { storeFile file("signed.jks") storePassword "111111" keyAlias "OUJ_SHOES" keyPassword "111111" } } buildTypes { debug { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt') signingConfig signingConfigs.debug jniDebuggable true } release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt') signingConfig signingConfigs.release } } packagingOptions { doNotStrip '*/armeabi-v7a/*.so' } bundle { language { enableSplit = false } density { enableSplit = false } abi { enableSplit = true } } }