JoelSjogren

Untitled

Mar 18th, 2021
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4.  
  5. android {
  6. compileSdkVersion 30
  7. buildToolsVersion "30.0.3"
  8.  
  9. defaultConfig {
  10. applicationId "com.kotlincamera"
  11. minSdkVersion 29
  12. targetSdkVersion 30
  13. versionCode 1
  14. versionName "1.0"
  15.  
  16. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  17. }
  18.  
  19. buildTypes {
  20. release {
  21. minifyEnabled false
  22. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  23. }
  24. }
  25.  
  26. }
  27.  
  28. dependencies {
  29. implementation fileTree(dir: 'libs', include: ['*.jar'])
  30. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  31. implementation 'androidx.appcompat:appcompat:1.2.0'
  32. implementation 'androidx.core:core-ktx:1.3.2'
  33. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  34. testImplementation 'junit:junit:4.12'
  35. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  36. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  37. }
  38.  
Add Comment
Please, Sign In to add comment