nowol/app/build.gradle

37 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2019-06-19 00:56:57 +03:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
2020-09-27 13:43:23 +03:00
buildToolsVersion "29.0.2"
2019-06-19 00:56:57 +03:00
defaultConfig {
2020-10-02 02:54:11 +03:00
applicationId "com.blogspot.developersu.nowol"
2019-06-19 00:56:57 +03:00
minSdkVersion 14
targetSdkVersion 29
2020-10-02 02:54:11 +03:00
versionCode 5
versionName "5.0"
2019-06-19 00:56:57 +03:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2020-10-02 02:54:11 +03:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2019-06-19 00:56:57 +03:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.volley:volley:1.1.1'
2020-09-27 13:43:23 +03:00
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'com.google.android.material:material:1.2.1'
2019-06-19 00:56:57 +03:00
testImplementation 'junit:junit:4.12'
2020-09-27 13:43:23 +03:00
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
2019-06-19 00:56:57 +03:00
}