2016-08-30 09:36:01 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// The Fabric Gradle plugin uses an open ended version to react
|
|
|
|
// quickly to Android tooling updates
|
|
|
|
classpath 'io.fabric.tools:gradle:1.+'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-26 19:55:33 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2016-08-30 09:36:01 +00:00
|
|
|
apply plugin: 'io.fabric'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
|
|
}
|
2016-08-26 19:55:33 +00:00
|
|
|
|
2016-09-17 15:37:27 +00:00
|
|
|
// Create a variable called keystorePropertiesFile, and initialize it to your
|
|
|
|
// keystore.properties file, in the rootProject folder.
|
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
|
|
|
|
// Initialize a new Properties() object called keystoreProperties.
|
|
|
|
def keystoreProperties = new Properties()
|
|
|
|
|
|
|
|
// Load your keystore.properties file into the keystoreProperties object.
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
|
2016-08-26 19:55:33 +00:00
|
|
|
android {
|
|
|
|
compileSdkVersion 21
|
|
|
|
buildToolsVersion "23.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "pl.tpolgrabia.urbanexplorer"
|
2016-10-04 22:10:06 +00:00
|
|
|
minSdkVersion 16
|
2016-08-26 19:55:33 +00:00
|
|
|
targetSdkVersion 21
|
2016-10-10 19:20:45 +00:00
|
|
|
versionCode 4
|
|
|
|
versionName "1.1"
|
2016-08-26 19:55:33 +00:00
|
|
|
}
|
2016-09-17 15:37:27 +00:00
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
config {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-26 19:55:33 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2016-09-17 14:31:29 +00:00
|
|
|
minifyEnabled true
|
2016-08-26 19:55:33 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-09-17 15:37:27 +00:00
|
|
|
signingConfig signingConfigs.config
|
2016-08-26 19:55:33 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-09 11:25:45 +00:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
disable 'InvalidPackage'
|
|
|
|
abortOnError false
|
|
|
|
}
|
2016-08-26 19:55:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-09-25 15:04:56 +00:00
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
2016-08-26 19:55:33 +00:00
|
|
|
testCompile 'junit:junit:4.12'
|
2016-08-30 09:36:01 +00:00
|
|
|
compile('com.crashlytics.sdk.android:crashlytics:2.6.2@aar') {
|
|
|
|
transitive = true;
|
|
|
|
}
|
2016-09-17 10:59:14 +00:00
|
|
|
compile('com.github.tony19:logback-android-classic:1.1.1-6') {
|
|
|
|
// workaround issue #73
|
|
|
|
exclude group: 'com.google.android', module: 'android'
|
|
|
|
}
|
2016-09-25 15:04:56 +00:00
|
|
|
compile project(':panoramiobindings')
|
|
|
|
compile project(':urbanexplorerutils')
|
|
|
|
compile project(':wikibinding')
|
2016-09-27 20:03:53 +00:00
|
|
|
compile project(':googleutils')
|
2016-09-28 19:14:32 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:21.0.3'
|
|
|
|
compile 'com.android.support:support-v4:21.0.3'
|
|
|
|
compile 'com.android.support:recyclerview-v7:21.0.3'
|
|
|
|
compile 'com.googlecode.android-query:android-query:0.25.9'
|
|
|
|
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
|
|
|
|
compile 'org.apache.commons:commons-lang3:3.4'
|
|
|
|
compile 'org.slf4j:slf4j-api:1.7.21'
|
|
|
|
compile 'com.github.tony19:logback-android-core:1.1.1-6'
|
|
|
|
compile 'com.google.code.gson:gson:2.7'
|
|
|
|
compile 'org.greenrobot:eventbus:3.0.0'
|
2016-08-26 19:55:33 +00:00
|
|
|
}
|