Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 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. apply plugin: 'com.jaredsburrows.license'
  8.  
  9. android {
  10. compileSdkVersion 28
  11. defaultConfig {
  12. applicationId "not.my.actual.package.name"
  13. minSdkVersion 19
  14. targetSdkVersion 28
  15. versionCode 1
  16. versionName "1.0"
  17. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  18. }
  19. buildTypes {
  20. release {
  21. minifyEnabled true
  22. shrinkResources true
  23. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  24. }
  25. }
  26. compileOptions {
  27. sourceCompatibility JavaVersion.VERSION_1_8
  28. targetCompatibility JavaVersion.VERSION_1_8
  29. }
  30. }
  31.  
  32. dependencies {
  33. implementation fileTree(include: ['*.jar'], dir: 'libs')
  34. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  35. implementation 'androidx.appcompat:appcompat:1.1.0-alpha04'
  36. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  37. implementation 'com.google.android.material:material:1.1.0-alpha05'
  38. testImplementation 'junit:junit:4.12'
  39. androidTestImplementation 'androidx.test:runner:1.2.0-alpha03'
  40. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha03'
  41. implementation 'moe.shizuku.privilege:api:3.0.0-alpha6'
  42. def libsuVersion = '2.4.0'
  43. implementation "com.github.topjohnwu.libsu:core:${libsuVersion}"
  44. implementation "com.github.topjohnwu.libsu:io:${libsuVersion}"
  45. implementation "com.github.topjohnwu.libsu:busybox:${libsuVersion}"
  46. implementation 'androidx.preference:preference:1.1.0-alpha04'
  47. implementation 'androidx.core:core-ktx:1.0.1'
  48. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  49. }
  50.  
  51. repositories {
  52. maven { url "https://dl.bintray.com/rikkaw/Shizuku" }
  53. maven { url 'https://jitpack.io' }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement