You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
plugins { |
|
id 'com.android.library' |
|
} |
|
|
|
android { |
|
namespace 'com.kingoit.survey.security' |
|
compileSdk 32 |
|
|
|
defaultConfig { |
|
minSdk 21 |
|
targetSdk 32 |
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
|
consumerProguardFiles "consumer-rules.pro" |
|
externalNativeBuild { |
|
cmake { |
|
cppFlags "" |
|
} |
|
} |
|
} |
|
|
|
buildTypes { |
|
release { |
|
minifyEnabled false |
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
|
} |
|
} |
|
externalNativeBuild { |
|
cmake { |
|
path "src/main/cpp/CMakeLists.txt" |
|
version "3.18.1" |
|
} |
|
} |
|
compileOptions { |
|
sourceCompatibility JavaVersion.VERSION_1_8 |
|
targetCompatibility JavaVersion.VERSION_1_8 |
|
} |
|
} |
|
|
|
dependencies { |
|
|
|
implementation 'androidx.appcompat:appcompat:1.5.1' |
|
implementation 'com.google.android.material:material:1.6.1' |
|
testImplementation 'junit:junit:4.13.2' |
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3' |
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' |
|
} |