Advertisement
Guest User

at.mkw.inlocs.android.login

a guest
Apr 1st, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.62 KB | None | 0 0
  1. apply plugin: 'android'
  2.  
  3. android {
  4.     compileSdkVersion smartbowSdkVersion
  5.     buildToolsVersion smartbowBuildToolsVersion
  6.  
  7.     defaultConfig {
  8.         versionCode smartbowVersionCode
  9.     }
  10.  
  11.     signingConfigs {
  12.         mkwe {
  13.             storeFile file(signingStoreFile)
  14.             storePassword signingStorePassword
  15.             keyAlias signingKeyAlias
  16.             keyPassword signingKeyPassword
  17.         }
  18.     }
  19.  
  20.     buildTypes {
  21.         release {
  22.             signingConfig signingConfigs.mkwe
  23.         }
  24.     }
  25. }
  26.  
  27. dependencies {
  28.     compile project(path: ':at.mkw.inlocs.android', configuration: 'cowRelease')
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement