Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3.  
  4. android {
  5. compileSdkVersion 25
  6. buildToolsVersion "25.0.0"
  7. defaultConfig {
  8. applicationId "com.devdustin.firstkotlin"
  9. minSdkVersion 15
  10. targetSdkVersion 25
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. sourceSets {
  22. main.java.srcDirs += 'src/main/kotlin'
  23. }
  24. }
  25.  
  26. dependencies {
  27. compile fileTree(dir: 'libs', include: ['*.jar'])
  28. compile 'org.jetbrains.kotlin:kotlin-stdlib:1.0.6'
  29. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  30. exclude group: 'com.android.support', module: 'support-annotations'
  31. })
  32. compile 'com.android.support:appcompat-v7:25.1.0'
  33. compile 'com.android.support:design:25.1.0'
  34. testCompile 'junit:junit:4.12'
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement