ExternGnss/app/build.gradle

32 lines
1.1 KiB
Groovy
Raw Normal View History

2022-03-27 22:51:53 +02:00
apply plugin: 'com.android.application'
2022-03-27 21:10:56 +02:00
android {
2022-03-30 18:05:58 +02:00
compileSdkVersion 30
2022-03-27 21:10:56 +02:00
defaultConfig {
2022-03-30 18:35:05 +02:00
applicationId "hendrikschutter.com.externgnss"
2022-04-25 17:11:58 +02:00
minSdkVersion 19
2022-03-30 18:05:58 +02:00
targetSdkVersion 30
2022-03-27 21:10:56 +02:00
versionCode 1
versionName "1.0"
2022-03-30 18:05:58 +02:00
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
2022-03-27 21:10:56 +02:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
2022-03-27 22:51:53 +02:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
2022-03-30 18:05:58 +02:00
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'pub.devrel:easypermissions:3.0.0'
implementation 'com.google.android.material:material:1.0.0'
2022-03-27 22:51:53 +02:00
testImplementation 'junit:junit:4.12'
2022-03-30 18:05:58 +02:00
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
2022-04-25 14:42:06 +02:00
implementation 'com.github.mik3y:usb-serial-for-android:3.4.3'
2022-03-27 22:51:53 +02:00
}