EtchDroid/app/build.gradle

55 lines
1.9 KiB
Groovy
Raw Normal View History

2018-08-12 14:33:11 +00:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
2018-08-12 14:33:11 +00:00
defaultConfig {
2018-08-15 17:04:45 +00:00
applicationId "eu.depau.etchdroid"
2018-08-12 14:33:11 +00:00
minSdkVersion 19
targetSdkVersion 28
2018-12-04 11:20:02 +00:00
versionCode 8
versionName "1.3.31"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
2018-08-12 14:33:11 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
encoding = 'UTF-8'
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2018-08-12 14:33:11 +00:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
2019-02-07 18:47:22 +00:00
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
implementation 'com.google.android.material:material:1.1.0-alpha03'
implementation 'androidx.recyclerview:recyclerview:1.1.0-alpha02'
2018-09-30 16:12:21 +00:00
implementation 'androidx.gridlayout:gridlayout:1.0.0'
2019-02-07 18:47:22 +00:00
implementation 'androidx.core:core:1.1.0-alpha04'
implementation 'androidx.fragment:fragment:1.1.0-alpha03'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha01'
api 'com.google.guava:guava:27.0.1-android'
2018-08-16 14:21:43 +00:00
2018-09-30 16:12:21 +00:00
api 'com.github.codekidX:storage-chooser:2.0.4.2'
// implementation 'com.github.mjdev:libaums:0.5.5'
implementation project(':libaums')
2018-08-16 11:39:37 +00:00
implementation project(':dmg2img')
2018-08-16 14:21:43 +00:00
implementation 'me.jfenn:Attribouter:0.1.5'
testImplementation 'junit:junit:4.13-beta-1'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
2018-08-12 14:33:11 +00:00
}