Advertisement
Guest User

Untitled

a guest
Oct 10th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.63 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 27
  5.     buildToolsVersion '27.0.3'
  6.     defaultConfig {
  7.         (...)
  8.     }
  9.  
  10.     signingConfigs {
  11.         release {
  12.             storeFile file('keystore.jks')
  13.             keyAlias 'platform'
  14.             storePassword 'testpass'
  15.             keyPassword 'testpass'
  16.         }
  17.     }
  18.  
  19.     buildTypes {
  20.         release {
  21.             minifyEnabled false
  22.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  23.  
  24.             signingConfig signingConfigs.release
  25.         }
  26.     }
  27.  
  28. }
  29.  
  30. dependencies {
  31.     (...)
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement