// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN buildscript { repositories { mavenCentral() google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:4.0.1' } } allprojects { repositories { mavenCentral() google() jcenter() flatDir { dirs 'libs' } } } apply plugin: 'com.android.application' dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: "libs", include: ["*.aar"]) implementation 'androidx.appcompat:appcompat:1.3.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.0' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation 'androidx.gridlayout:gridlayout:1.0.0' implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61' } android { compileSdkVersion 29 buildToolsVersion '30.0.3' compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } //设置签名,debug运行也用正式签名 signingConfigs { release { v1SigningEnabled true v2SigningEnabled false } debug { v1SigningEnabled true v2SigningEnabled false } } defaultConfig { minSdkVersion 22 targetSdkVersion 29 applicationId 'com.skfz.boomegg' ndk { abiFilters 'armeabi-v7a' } versionCode 2 versionName '1.2.2' } lintOptions { abortOnError false } aaptOptions { noCompress = ['.unity3d', '.ress', '.resource', '.obb'] } buildTypes { debug { minifyEnabled false useProguard false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt' jniDebuggable true } release { minifyEnabled false useProguard false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt' signingConfig signingConfigs.debug } } packagingOptions { doNotStrip '*/armeabi-v7a/*.so' } bundle { language { enableSplit = false } density { enableSplit = false } abi { enableSplit = true } } }