mirror of
https://github.com/felipecsl/6502Android.git
synced 2025-01-07 18:31:07 +00:00
47 lines
1.4 KiB
Groovy
47 lines
1.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion "21.1.2"
|
|
|
|
defaultConfig {
|
|
applicationId "android.emu6502"
|
|
minSdkVersion 16
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
}
|
|
testOptions {
|
|
unitTests.returnDefaultValues = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:design:22.2.0'
|
|
compile 'com.android.support:appcompat-v7:22.2.0'
|
|
compile 'com.android.support:cardview-v7:22.2.0'
|
|
compile 'org.jetbrains.kotlin:kotlin-stdlib:0.12.213'
|
|
compile "org.jetbrains.kotlin:kotlin-android-sdk-annotations:0.12.213"
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:0.12.213"
|
|
compile 'com.jakewharton:kotterknife:0.1.0-SNAPSHOT'
|
|
compile 'com.facebook.stetho:stetho:1.1.1'
|
|
compile 'com.google.guava:guava:18.0'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
testCompile 'org.hamcrest:hamcrest-integration:1.3'
|
|
testCompile 'org.hamcrest:hamcrest-core:1.3'
|
|
testCompile 'org.hamcrest:hamcrest-library:1.3'
|
|
}
|