72 lines
No EOL
2.3 KiB
Groovy
72 lines
No EOL
2.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion "26.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "net.thauvin.erik.android.tesremoteprogrammer"
|
|
minSdkVersion 21
|
|
targetSdkVersion 26
|
|
versionCode 1
|
|
versionName "1.0"
|
|
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
compile 'com.android.support:support-v13:26.1.0'
|
|
compile 'com.android.support:appcompat-v7:26.1.0'
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
compile 'com.android.support:design:26.1.0'
|
|
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.2'
|
|
|
|
// https://github.com/JakeWharton/ViewPagerIndicator
|
|
compile 'fr.avianey.com.viewpagerindicator:library:2.4.1.1@aar'
|
|
|
|
// https://github.com/AndroidDeveloperLB/AutoFitTextView
|
|
compile 'com.github.AndroidDeveloperLB:AutoFitTextView:4'
|
|
|
|
// https://github.com/hotchemi/PermissionsDispatcher
|
|
compile 'com.github.hotchemi:permissionsdispatcher:2.4.0'
|
|
kapt 'com.github.hotchemi:permissionsdispatcher-processor:2.4.0'
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
|
|
|
// https://github.com/eggheadgames/android-about-box
|
|
compile 'com.github.eggheadgames:android-about-box:1.3.1'
|
|
//compile(name: 'library-debug', ext: 'aar')
|
|
//compile 'com.github.daniel-stoneuk:material-about-library:2.2.1'
|
|
compile 'com.android.support:animated-vector-drawable:26.0.1'
|
|
compile 'com.android.support:cardview-v7:26.0.1'
|
|
compile 'com.android.support:animated-vector-drawable:26.1.0'
|
|
compile 'com.android.support:cardview-v7:26.1.0'
|
|
|
|
// https://github.com/ACRA/acra
|
|
compile 'ch.acra:acra:4.9.2'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
maven { url "https://maven.google.com" }
|
|
}
|
|
|
|
kapt {
|
|
//generateStubs = true
|
|
} |