Added Google Play store graphics and screnshots.
Added artifacts.gradle
|
@ -1,4 +1,5 @@
|
|||
apply plugin: 'com.android.application'
|
||||
apply from: "../artifacts.gradle"
|
||||
|
||||
android {
|
||||
compileSdkVersion 22
|
||||
|
|
26
artifacts.gradle
Normal 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)
|
||||
}
|
||||
}
|
|
@ -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
|
BIN
images/ellipticalstepsmiles-qr.png
Normal file
After Width: | Height: | Size: 943 B |
BIN
images/ellipticalstepsmiles.gif
Normal file
After Width: | Height: | Size: 214 KiB |
BIN
images/feature_graphic_1024x500.png
Normal file
After Width: | Height: | Size: 228 KiB |
BIN
images/promo_graphic_180x120.png
Normal file
After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 96 KiB |
Before Width: | Height: | Size: 86 KiB |
BIN
images/screenshots/tablet_1.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
images/screenshots/tablet_2.png
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
images/screenshots/tablet_3.png
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
images/screenshots/tablet_4.png
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
images/screenshots/tablet_5.png
Normal file
After Width: | Height: | Size: 73 KiB |