Skip to content

HOWTO Compile AFWall

CHEF-KOCH edited this page Aug 28, 2015 · 36 revisions

If you don't know anything about compiling Android apps (apk's), you should better read this article here first.

Index

Software

Android Studio:

Eclipse (old):

Advanced users can build the latest AFWall+.APK from the Command Line or see the next steps.

IDE Requirements

AFWall+ can be built using any IDE that supports the Gradle build tool, used by projects such as Android Studio or Intellij IDEA plus many others. (Gradle is the new equivalent of the old "Ant" build tool.)

General procedure using Android Studio

  • Download and install some GitHub sync-tool like SmartGit or GitHub for Win/Mac.
  • Download and install the JAVA SE Development Kit 8 (JDK8) from here.
  • Install the latest Android Studio from here.
  • When you start Android Studio, you'll see "Welcome to Android Studio" with several options. Here you choose to Open Project and then navigate to your GitHub synchronization directory where you have added AFWall+, from your GitHub sync-tool.

The project will open immediately, but now you want to close it, so that you can return to the Welcome screen, this time you choose Configure >> SDK Manager. Here you select all APIs related to API 14 (or higher), which is our lowest supported API. For more details follow the setup instructions here. Now click on the sideways Gradle tab, on the right side of the IDE. This will open a new window, once in it, double click on Debug (assembleDebug). Check for build errors in the lower screen log window. If it compiles without errors, you can now build your own APK by clicking on the menu items: Build >> Generate Signed APK. This will ask you for 3 new passwords to be used in your "KeyStore" (1 master, 1 file, 1 APK alias). You may also add your credentials in signing.properties to enable automatic signing.

Example:

WARNING: NEVER UPLOAD THIS FILE TO GITHUB! .gitignore will reject accidental uploads.

  • KEYSTORE_FILE=path\to\mykeystore.keystore
  • KEYSTORE_PASSWORD=*************************
  • KEY_ALIAS=*********************************
  • KEY_PASSWORD=******************************

If all of the above succeeded, push the AFWall+ .apk to your device and run.

After repository refactoring and cleanup

Apparently, the first time after you have added our repo using the (Windows) GitHub app, or deleted a previous version from Android Studio, you need to import it into Android Studio by:

  • Selecting "Import Non-Android Studio Project"

Selecting "Open an existing Android Studio Project" doesn't work, as it doesn't seem to setup the .gradle and .idea files etc.

Build via Command Line

Use the Android SDK Manager to install API 21 (or higher) and select it. To list all of available targets, type

$ android list targets

Then, you will see something like

"id: 4 or "Google Inc.:Google APIs:21"
Name: Google APIs
Type: Add-On
Vendor: Google Inc. .... "

To select this, use the "-t" argument in the following build-process like

$ android update project -p . -s -t 4

After this we set our JAVA_HOME path and go into building:

$ export ANDROID_JAVA_HOME="/opt/sun-jdk-1.8.600__27" 
$ mkdir afwall_build
$ cd afwall_build
$ git clone git://github.com/ukanth/afwall.git 
$ cd afwall
$ ./gradlew clean assembleDebug
$ git submodule init
$ git submodule update
$ android update project -p . -s
$ ant debug

This build the afwall-debug.apk and place it into /bin folder.

Compiling native binaries

On the host side you'll need to install:

  • Android Studio 1.3.1 or higher (If you used the above steps you're mostly done).
  • Ensure Makefile are on the correct place.
  • Ensure you use allDebug or allRelease (since Android Studio may have problems with other flags).
  • Edit and compile the binaries as per needs, the debbuger shows the important stuff within the output.txt file.

Compiling via graphical user interface

  • Here is a Video Tutorial from a XDA member for those users who want to use the graphical user interface (GUI) method. The tutorial is based on the needed software explained above.
  • Here you get the official build instructions.

For experts user only!

Create an unsigned .APK file with apkbuilder

Use apkbuilder (included in the Android Develop Kit)

apkbuilder ${output.apk.file} -u -z ${packagedresource.file} -f ${dex.file}

Sign an .APK file via jarsigner

Use jarsigner

jarsigner -keystore ${keystore} -storepass ${keystore.password} -keypass ${keypass} -signedjar ${signed.apkfile} ${unsigned.apkfile} ${keyalias}

Publish the latest .APK file

adb -d install -r ${signed.apk}

Useful links

Final version 08.28.2015