1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- plugins {
- id 'com.android.application'
- id 'org.jetbrains.kotlin.android'
- }
- android {
- namespace 'jx.cn.escort'
- compileSdk 34
- defaultConfig {
- applicationId "jx.cn.escort"
- minSdk 24
- targetSdk 34
- versionCode 1
- versionName "1.0"
- ndk { abiFilters "armeabi","x86","x86_64","armeabi-v7a","arm64-v8a" }
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- splits {
- abi {
- // enable true
- // reset()
- include "armeabi","x86","x86_64","armeabi-v7a","arm64-v8a"
- // universalApk false
- }
- }
- // signingConfigs {
- // release {
- // storeFile file('..\\keystore\\psbc.jks')
- // storePassword '123456'
- // keyAlias 'psbc'
- // keyPassword '123456'
- // }
- // debug{
- // storeFile file('..\\keystore\\psbc.jks')
- // storePassword '123456'
- // keyAlias 'psbc'
- // keyPassword '123456'
- // }
- // }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = '1.8'
- }
- }
- dependencies {
- implementation 'androidx.core:core-ktx:1.10.1'
- implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'com.google.android.material:material:1.9.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
- }
|