Added Google Play store graphics and screnshots.

Added artifacts.gradle
This commit is contained in:
Erik C. Thauvin 2015-10-21 17:01:08 -07:00
parent 0593d3710d
commit d09388d269
15 changed files with 30 additions and 1 deletions

View file

@ -1,4 +1,5 @@
apply plugin: 'com.android.application'
apply from: "../artifacts.gradle"
android {
compileSdkVersion 22

26
artifacts.gradle Normal file
View file

@ -0,0 +1,26 @@
android.applicationVariants.all { variant ->
def appName
//Check if an applicationName property is supplied; if not use the name of the parent project.
if (project.hasProperty("applicationName")) {
appName = applicationName
} else {
appName = parent.name
}
variant.outputs.each { output ->
def newApkName
def baseName = (output.baseName.equalsIgnoreCase("release") ? '' : "-${output.baseName}" )
//If there's no ZipAlign task it means that our artifact will be unaligned and we need to mark it as such.
if (output.zipAlign) {
newApkName = "${appName}-${variant.versionName}${baseName}.apk"
} else {
newApkName = "${appName}-${variant.versionName}${baseName}-unaligned.apk"
}
output.outputFile = new File(output.outputFile.parent, newApkName)
}
}

View file

@ -15,4 +15,6 @@
# When configured, Gradle will run in incubating parallel mode.
# 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
# org.gradle.parallel=true
# org.gradle.parallel=true
applicationName=EllipticalStepsMiles

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 86 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB