This repository has been archived by the owner on Jan 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
76 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
language: java | ||
jdk: oraclejdk7 | ||
env: | ||
matrix: | ||
- ANDROID_SDKS=android-18,sysimg-18 ANDROID_TARGET=android-18 ANDROID_ABI=armeabi-v7a | ||
before_install: | ||
# Install base Android SDK | ||
- sudo apt-get update -qq | ||
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch > /dev/null; fi | ||
- wget http://dl.google.com/android/android-sdk_r22.0.5-linux.tgz | ||
- tar xzf android-sdk_r22.0.5-linux.tgz | ||
- export ANDROID_HOME=$PWD/android-sdk-linux | ||
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools | ||
|
||
# Gradle | ||
- wget http://services.gradle.org/distributions/gradle-1.7-bin.zip | ||
- unzip gradle-1.7-bin.zip | ||
- export GRADLE_HOME=$PWD/gradle-1.7 | ||
- export PATH=$GRADLE_HOME/bin:$PATH | ||
|
||
# install android build tools | ||
- wget https://dl-ssl.google.com/android/repository/build-tools_r18.0.1-linux.zip | ||
- unzip build-tools_r18.0.1-linux.zip -d $ANDROID_HOME | ||
- mkdir -p $ANDROID_HOME/build-tools/ | ||
- mv $ANDROID_HOME/android-4.3 $ANDROID_HOME/build-tools/18.0.1 | ||
|
||
# Install required components. | ||
# For a full list, run `android list sdk -a --extended` | ||
# Note that sysimg-18 downloads the ARM, x86 and MIPS images (we should optimize this). | ||
# Other relevant API's | ||
- echo yes | android update sdk --filter platform-tools --no-ui --force > /dev/null | ||
- echo yes | android update sdk --filter android-17 --no-ui --force > /dev/null | ||
- echo yes | android update sdk --filter android-18 --no-ui --force > /dev/null | ||
- echo yes | android update sdk --filter sysimg-18 --no-ui --force > /dev/null | ||
- echo yes | android update sdk --filter extra-android-support --no-ui --force > /dev/null | ||
- echo yes | android update sdk --filter extra-android-m2repository --no-ui --force > /dev/null | ||
|
||
script: | ||
- gradle assemble |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Change Log | ||
=============================================================================== | ||
|
||
Version 1.0.1 *(2013-10-06)* | ||
---------------------------- | ||
|
||
* Fix: Crash when moving to another screen after the display orientation had changed in the middle of the wizard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ buildscript { | |
} | ||
|
||
allprojects { | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
group = "org.codepond" | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0.0" package="org.codepond.wizardroid"> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="2" android:versionName="1.0.1" package="org.codepond.wizardroid"> | ||
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="18"/> | ||
<application/> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters