6502Android/app/build.gradle

38 lines
987 B
Groovy
Raw Normal View History

2015-06-09 17:21:49 +00:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
2017-03-08 05:30:12 +00:00
compileSdkVersion 25
buildToolsVersion "25.0.2"
2015-06-09 17:21:49 +00:00
2017-03-08 05:30:12 +00:00
defaultConfig {
applicationId "android.emu6502"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
2017-03-14 06:45:19 +00:00
test.java.srcDirs += 'src/test/kotlin'
2017-03-08 05:30:12 +00:00
}
testOptions {
unitTests.returnDefaultValues = true
}
2015-06-09 17:21:49 +00:00
}
dependencies {
2017-03-08 05:30:12 +00:00
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:cardview-v7:25.2.0'
compile 'org.jetbrains.kotlin:kotlin-stdlib:1.1.0'
compile "org.jetbrains.kotlin:kotlin-reflect:1.1.0"
compile 'com.jakewharton:kotterknife:0.1.0-SNAPSHOT'
compile 'com.facebook.stetho:stetho:1.3.1'
compile 'com.google.guava:guava:20.0'
2015-06-14 02:28:37 +00:00
2017-03-08 05:30:12 +00:00
testCompile 'junit:junit:4.12'
testCompile 'com.google.truth:truth:0.32'
2017-03-08 05:30:12 +00:00
testCompile 'org.mockito:mockito-core:1.10.19'
2015-06-09 17:21:49 +00:00
}