You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.5 KiB
61 lines
1.5 KiB
apply plugin: 'com.android.application'
|
|
//apply plugin: 'kotlin-android'
|
|
//apply plugin: 'kotlin-android-extensions'
|
|
//apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion '26.0.2'
|
|
|
|
defaultConfig {
|
|
applicationId "com.arialyy.simple"
|
|
minSdkVersion 15
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
multiDexEnabled true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/services/javax.annotation.processing.Processor'
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
// sourceSets {
|
|
// main.kotlin.srcDirs += 'src/main/kotlin'
|
|
// main.java.srcDirs += 'src/main/java'
|
|
// }
|
|
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.android.support:appcompat-v7:23.+'
|
|
compile 'com.android.support:design:23.+'
|
|
compile 'com.jakewharton:butterknife:7.0.1'
|
|
compile 'com.google.code.gson:gson:2.7'
|
|
compile 'com.squareup.okhttp3:okhttp:3.2.0'
|
|
compile 'com.arialyy.frame:MVVM2:2.2.0'
|
|
compile project(':Aria')
|
|
compile project(':AriaCompiler')
|
|
// compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
|
// compile 'com.arialyy.aria:aria-core:3.3.16'
|
|
// annotationProcessor 'com.arialyy.aria:aria-compiler:3.3.16'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|