Tanver247

build.gradle

Apr 16th, 2020
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 27
  4. defaultConfig {
  5. applicationId "com.mycompany.myapp4"
  6. minSdkVersion 14
  7. targetSdkVersion 28
  8. versionCode 1
  9. versionName "1.0"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }}
  16. }
  17. dependencies {
  18. api 'com.android.support:cardview-v7:27.0.0'
  19. api 'com.android.support:appcompat-v7:27.+'
  20. compile fileTree(dir: 'libs', include: ['*.jar'])
  21. }
Add Comment
Please, Sign In to add comment