mirror of
https://gitlab.silvrtree.co.uk/martind2000/WolkSense-Hexiwear.git
synced 2025-01-10 23:35:09 +00:00
Updated version.
This commit is contained in:
parent
8280339ff4
commit
36d2d62cc3
3
android/.gitignore
vendored
3
android/.gitignore
vendored
@ -7,3 +7,6 @@
|
|||||||
/captures
|
/captures
|
||||||
.idea
|
.idea
|
||||||
*.iml
|
*.iml
|
||||||
|
|
||||||
|
/app/publishing
|
||||||
|
/app/hexiwear.properties
|
||||||
|
@ -9,8 +9,8 @@ android {
|
|||||||
applicationId "com.wolkabout.hexiwear"
|
applicationId "com.wolkabout.hexiwear"
|
||||||
minSdkVersion 19
|
minSdkVersion 19
|
||||||
targetSdkVersion 22
|
targetSdkVersion 22
|
||||||
versionCode 25
|
versionCode 26
|
||||||
versionName "1.25"
|
versionName "1.26"
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
@ -31,6 +31,24 @@ android {
|
|||||||
exclude 'META-INF/services/org.androidannotations.plugin.AndroidAnnotationsPlugin'
|
exclude 'META-INF/services/org.androidannotations.plugin.AndroidAnnotationsPlugin'
|
||||||
exclude 'asm-license.txt'
|
exclude 'asm-license.txt'
|
||||||
}
|
}
|
||||||
|
if (project.hasProperty("hexiwear.properties") && file(project.property("hexiwear.properties")).exists()) {
|
||||||
|
Properties properties = new Properties()
|
||||||
|
properties.load(new FileInputStream(file(project.property("hexiwear.properties"))))
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
release {
|
||||||
|
storeFile file(properties['keystore'])
|
||||||
|
storePassword properties['keystore.password']
|
||||||
|
keyAlias properties['keyAlias']
|
||||||
|
keyPassword properties['keyPassword']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
signingConfig signingConfigs.release
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def SupportVersion = '23.4.0'
|
def SupportVersion = '23.4.0'
|
||||||
|
@ -3,7 +3,7 @@ buildscript {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:2.2.2'
|
classpath 'com.android.tools.build:gradle:2.2.3'
|
||||||
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,4 +15,5 @@
|
|||||||
# When configured, Gradle will run in incubating parallel mode.
|
# When configured, Gradle will run in incubating parallel mode.
|
||||||
# This option should only be used with decoupled projects. More details, visit
|
# This option should only be used with decoupled projects. More details, visit
|
||||||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
||||||
# org.gradle.parallel=true
|
# org.gradle.parallel=true
|
||||||
|
hexiwear.properties=hexiwear.properties
|
0
android/gradlew
vendored
Normal file → Executable file
0
android/gradlew
vendored
Normal file → Executable file
Loading…
Reference in New Issue
Block a user