1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- plugins {
- id 'com.android.application'
- }
- android {
- namespace 'com.vinno.sdk.demo'
- compileSdkVersion 33
- defaultConfig {
- applicationId "com.vinno.sdk.demo"
- minSdkVersion 26
- targetSdkVersion 33
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- debuggable true
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- // implementation fileTree(dir: 'libs', include: ['*.aar'])
- implementation 'androidx.appcompat:appcompat:1.4.1'
- implementation 'com.google.android.material:material:1.6.0'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
- implementation 'androidx.multidex:multidex:2.0.1'
- //permissions
- implementation 'com.github.getActivity:XXPermissions:13.5'
- implementation 'com.github.kongzue.DialogX:DialogX:0.0.41'
- implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
- api project(':app')
- }
|