2019-07-10 04:37:52 +03:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 29
|
2020-08-03 14:02:24 +03:00
|
|
|
buildToolsVersion "29.0.2"
|
2019-07-10 04:37:52 +03:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.blogspot.developersu.ns_usbloader"
|
|
|
|
minSdkVersion 15
|
|
|
|
targetSdkVersion 29
|
2020-10-10 23:24:32 +03:00
|
|
|
versionCode 5
|
|
|
|
versionName "3.0"
|
2019-07-10 04:37:52 +03:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
android.defaultConfig.vectorDrawables.useSupportLibrary = true
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2020-09-20 15:25:50 +03:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
|
2019-07-10 04:37:52 +03:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2020-09-20 15:25:50 +03:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.3.0'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
2020-03-23 20:33:17 +03:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
2019-07-10 04:37:52 +03:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2020-09-20 15:25:50 +03:00
|
|
|
implementation 'com.google.android.material:material:1.2.1'
|
2019-07-10 04:37:52 +03:00
|
|
|
}
|