1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- plugins {
- id 'com.android.application'
- }
- android {
- namespace 'com.cfmlg.mlg'
- compileSdk 33
- defaultConfig {
- applicationId "com.cfmlg.mlg680"
- minSdk 24
- targetSdk 29
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- lintOptions {
- abortOnError false
- }
- signingConfigs {
- release {
- storeFile file('src/key/key.keystore')
- storePassword 'guonenghuizhi888'
- keyAlias 'jsyg'
- keyPassword 'guonenghuizhi888'
- }
- }
- buildTypes {
- release {
- signingConfig signingConfigs.release
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- externalNativeBuild {
- cmake {
- path file('src/main/cpp/CMakeLists.txt')
- version '3.22.1'
- }
- }
- dataBinding {
- enabled = true
- }
- buildFeatures {
- viewBinding true
- }
- sourceSets {
- main {
- jniLibs.srcDirs = ['libs']
- }
- }
- }
- dependencies {
- implementation 'androidx.appcompat:appcompat:1.4.1'
- implementation 'com.google.android.material:material:1.5.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.3'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
- implementation 'androidx.appcompat:appcompat:1.4.1'
- implementation 'org.apache.commons:commons-lang3:3.12.0'
- implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
- implementation 'androidx.appcompat:appcompat:1.4.0'
- implementation 'com.github.sahooz:ImageMapView:1.0.1'
- implementation 'com.github.getActivity:XXPermissions:20.0'
- implementation 'androidx.databinding:databinding-runtime:4.0.0'
- implementation 'com.github.zrunker:ZImageView:v1.0'
- implementation "androidx.lifecycle:lifecycle-viewmodel:2.2.0"
- implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
- }
|