• Stars
    star
    801
  • Rank 56,886 (Top 2 %)
  • Language
    C
  • License
    GNU General Publi...
  • Created over 13 years ago
  • Updated over 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

GAEProxy for Android (Deprecated)

TRAVIS CI STATUS

Build Status

DOWNLOADS

Latest Versions: [Google Drive] (https://drive.google.com/folderview?id=0B3YSrCJtFxYiZWtyNm1zX21Ca2c#list)

PREREQUISITES

  • JDK 1.6+
  • Maven 3.0.5
  • Android SDK r17+
  • Android NDK r8+
  • Local Maven Dependencies
git clone https://github.com/mosabua/maven-android-sdk-deployer.git 
pushd maven-android-sdk-deployer
export ANDROID_HOME=/path/to/android/sdk
mvn install -P 4.1
popd

BUILD

  <settings>
    <profiles>
      <profile>
        <activation>
          <activeByDefault>true</activeByDefault>
        </activation>
        <properties>
          <sign.keystore>/absolute/path/to/your.keystore</sign.keystore>
          <sign.alias>youralias</sign.alias>
          <sign.keypass>keypass</sign.keypass>
          <sign.storepass>storepass</sign.storepass>
        </properties>
      </profile>
    </profiles>
  </settings>
  • Invoke the building like this
  mvn clean install