Advertisement
Guest User

app/build.gradle

a guest
Oct 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. apply plugin: 'kotlin-android'
  4.  
  5. apply plugin: 'kotlin-android-extensions'
  6.  
  7. android {
  8. compileSdkVersion 28
  9. defaultConfig {
  10. applicationId "edu.uiowa.helloallegro"
  11. minSdkVersion 15
  12. targetSdkVersion 28
  13. versionCode 1
  14. versionName "1.0"
  15. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  16. externalNativeBuild {
  17. cmake {
  18. cppFlags "-frtti -fexceptions"
  19. }
  20. }
  21. }
  22. buildTypes {
  23. release {
  24. minifyEnabled false
  25. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  26. }
  27. }
  28. externalNativeBuild {
  29. cmake {
  30. path "CMakeLists.txt"
  31. }
  32. }
  33. }
  34.  
  35. dependencies {
  36. implementation(name="allegro5-release-5.2.4.1A", ext="aar")
  37. implementation fileTree(dir: 'libs', include: ['*.jar'])
  38. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  39. implementation 'com.android.support:appcompat-v7:28.0.0'
  40. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  41. testImplementation 'junit:junit:4.12'
  42. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  43. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement