Advertisement
Guest User

at.mkw.inlocs.android.core

a guest
Apr 1st, 2014
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.91 KB | None | 0 0
  1. apply plugin: 'android'
  2.  
  3.  
  4. android {
  5.     compileSdkVersion smartbowSdkVersion
  6.     buildToolsVersion smartbowBuildToolsVersion
  7.  
  8.     defaultConfig {
  9.         versionCode smartbowVersionCode
  10.     }
  11.  
  12.     signingConfigs {
  13.         mkwe {
  14.             storeFile file(signingStoreFile)
  15.             storePassword signingStorePassword
  16.             keyAlias signingKeyAlias
  17.             keyPassword signingKeyPassword
  18.         }
  19.     }
  20.  
  21.     productFlavors {
  22.         cow {
  23.             packageName "at.mkw.inlocs.android.core.cow"
  24.         }
  25.  
  26.         pig {
  27.             packageName "at.mkw.inlocs.android.core.pig"
  28.         }
  29.     }
  30.  
  31.     buildTypes {
  32.         release {
  33.             signingConfig signingConfigs.mkwe
  34.         }
  35.     }
  36. }
  37.  
  38. dependencies {
  39.     cowCompile project(path: ':at.mkw.inlocs.android.lib', configuration: 'cowRelease')
  40.     pigCompile project(path: ':at.mkw.inlocs.android.lib', configuration: 'pigRelease')
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement