Skip to content

Commit ebfb10c

Browse files
committed
Qt: add Android packaging support
Introduce an android directory under qt and allow one to package bitcoin-qt for Android by running make apk. Add bitcoin-qt Android build instructions.
1 parent d2a78ee commit ebfb10c

File tree

16 files changed

+174
-0
lines changed

16 files changed

+174
-0
lines changed

configure.ac

+16
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,21 @@ case $host in
734734
*android*)
735735
dnl make sure android stays above linux for hosts like *linux-android*
736736
TARGET_OS=android
737+
case $host in
738+
*x86_64*)
739+
ANDROID_ARCH=x86_64
740+
;;
741+
*aarch64*)
742+
ANDROID_ARCH=arm64-v8a
743+
;;
744+
*armv7a*)
745+
ANDROID_ARCH=armeabi-v7a
746+
;;
747+
*i686*)
748+
ANDROID_ARCH=i686
749+
;;
750+
*) AC_MSG_ERROR("Could not determine Android arch") ;;
751+
esac
737752
;;
738753
*linux*)
739754
TARGET_OS=linux
@@ -1844,6 +1859,7 @@ AC_SUBST(HAVE_BUILTIN_PREFETCH)
18441859
AC_SUBST(HAVE_MM_PREFETCH)
18451860
AC_SUBST(HAVE_STRONG_GETAUXVAL)
18461861
AC_SUBST(HAVE_WEAK_GETAUXVAL)
1862+
AC_SUBST(ANDROID_ARCH)
18471863
AC_CONFIG_FILES([Makefile src/Makefile doc/man/Makefile share/setup.nsi share/qt/Info.plist test/config.ini])
18481864
AC_CONFIG_FILES([contrib/devtools/split-debug.sh],[chmod +x contrib/devtools/split-debug.sh])
18491865
AM_COND_IF([HAVE_DOXYGEN], [AC_CONFIG_FILES([doc/Doxyfile])])

doc/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ The following are developer notes on how to build Bitcoin Core on your native pl
4444
- [FreeBSD Build Notes](build-freebsd.md)
4545
- [OpenBSD Build Notes](build-openbsd.md)
4646
- [NetBSD Build Notes](build-netbsd.md)
47+
- [Android Build Notes](build-android.md)
4748
- [Gitian Building Guide (External Link)](https://github.com/bitcoin-core/docs/blob/master/gitian-building.md)
4849

4950
Development

doc/build-android.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
ANDROID BUILD NOTES
2+
======================
3+
4+
This guide describes how to build and package the `bitcoin-qt` GUI for Android on Linux and macOS.
5+
6+
## Preparation
7+
8+
You will need to get the Android NDK and build dependencies for Android as described in [depends/README.md](../depends/README.md).
9+
10+
## Building and packaging
11+
12+
After the depends are built configure with one of the resulting prefixes and run `make && make apk` in `src/qt`.

src/Makefile.qt.include

+14
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,20 @@ bitcoin_qt_clean: FORCE
378378

379379
bitcoin_qt : qt/bitcoin-qt$(EXEEXT)
380380

381+
APK_LIB_DIR = qt/android/libs/$(ANDROID_ARCH)
382+
QT_BASE_PATH = $(shell find ../depends/sources/ -maxdepth 1 -type f -regex ".*qtbase.*\.tar.xz")
383+
QT_BASE_TLD = $(shell tar tf $(QT_BASE_PATH) --exclude='*/*')
384+
385+
bitcoin_qt_apk: FORCE
386+
mkdir -p $(APK_LIB_DIR)
387+
cp $(dir $(CC))../sysroot/usr/lib/$(host_alias)/libc++_shared.so $(APK_LIB_DIR)
388+
tar xf $(QT_BASE_PATH) -C qt/android/src/ $(QT_BASE_TLD)src/android/jar/src --strip-components=5
389+
tar xf $(QT_BASE_PATH) -C qt/android/src/ $(QT_BASE_TLD)src/android/java/src --strip-components=5
390+
tar xf $(QT_BASE_PATH) -C qt/android/res/ $(QT_BASE_TLD)src/android/java/res --strip-components=5
391+
cp qt/bitcoin-qt $(APK_LIB_DIR)/libbitcoin-qt.so
392+
cd qt/android && gradle wrapper --gradle-version=6.6.1
393+
cd qt/android && ./gradlew build
394+
381395
ui_%.h: %.ui
382396
@test -f $(UIC)
383397
@$(MKDIR_P) $(@D)

src/qt/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ check: FORCE
77
$(MAKE) -C .. test_bitcoin_qt_check
88
bitcoin-qt bitcoin-qt.exe: FORCE
99
$(MAKE) -C .. bitcoin_qt
10+
apk: FORCE
11+
$(MAKE) -C .. bitcoin_qt_apk

src/qt/android/AndroidManifest.xml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version='1.0' encoding='utf-8'?>
2+
<manifest package="org.bitcoincore.qt" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0" android:versionCode="1" android:installLocation="auto">
3+
<uses-sdk android:targetSdkVersion="24"/>
4+
5+
<uses-permission android:name="android.permission.INTERNET" />
6+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
7+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
8+
9+
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
10+
11+
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
12+
13+
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="Bitcoin Core">
14+
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
15+
android:name="org.bitcoincore.qt.BitcoinQtActivity"
16+
android:label="Bitcoin Core"
17+
android:icon="@drawable/bitcoin"
18+
android:screenOrientation="unspecified"
19+
android:launchMode="singleTop">
20+
<intent-filter>
21+
<action android:name="android.intent.action.MAIN"/>
22+
<category android:name="android.intent.category.LAUNCHER"/>
23+
</intent-filter>
24+
25+
<meta-data android:name="android.app.arguments" android:value="-testnet"/>
26+
<meta-data android:name="android.app.lib_name" android:value="bitcoin-qt"/>
27+
<meta-data android:name="android.app.repository" android:value="default"/>
28+
<meta-data android:name="android.app.bundle_local_qt_libs" android:value="1"/>
29+
<meta-data android:name="android.app.use_local_qt_libs" android:value="1"/>
30+
<meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
31+
<meta-data android:name="android.app.system_libs_prefix" android:value="/system/lib/"/>
32+
<meta-data android:name="android.app.background_running" android:value="true"/>
33+
<meta-data android:name="android.app.auto_screen_scale_factor" android:value="true"/>
34+
<meta-data android:name="android.app.extract_android_style" android:value="default"/>
35+
</activity>
36+
37+
</application>
38+
</manifest>

src/qt/android/build.gradle

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
buildscript {
2+
repositories {
3+
google()
4+
jcenter()
5+
}
6+
7+
dependencies {
8+
classpath 'com.android.tools.build:gradle:3.1.0'
9+
}
10+
}
11+
12+
repositories {
13+
google()
14+
jcenter()
15+
}
16+
17+
apply plugin: 'com.android.application'
18+
19+
dependencies {
20+
implementation fileTree(dir: 'libs', include: ['*.jar'])
21+
}
22+
23+
android {
24+
compileSdkVersion androidCompileSdkVersion.toInteger()
25+
26+
buildToolsVersion androidBuildToolsVersion
27+
28+
sourceSets {
29+
main {
30+
manifest.srcFile 'AndroidManifest.xml'
31+
java.srcDirs = [qt5AndroidDir + '/src', 'src', 'java']
32+
aidl.srcDirs = [qt5AndroidDir + '/src', 'src', 'aidl']
33+
res.srcDirs = [qt5AndroidDir + '/res', 'res']
34+
resources.srcDirs = ['src']
35+
renderscript.srcDirs = ['src']
36+
assets.srcDirs = ['assets']
37+
jniLibs.srcDirs = ['libs']
38+
}
39+
}
40+
41+
lintOptions {
42+
abortOnError false
43+
}
44+
45+
dexOptions {
46+
javaMaxHeapSize '4g'
47+
}
48+
49+
defaultConfig {
50+
minSdkVersion 24
51+
}
52+
}

src/qt/android/gradle.properties

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
androidBuildToolsVersion=28.0.3
2+
androidCompileSdkVersion=28
3+
qt5AndroidDir=new File(".").absolutePath
4+
org.gradle.jvmargs=-Xmx4608M
4.43 KB
Loading
1.66 KB
Loading
2.5 KB
Loading
6.67 KB
Loading
11.2 KB
Loading
16.6 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
package org.bitcoincore.qt;
2+
3+
import android.os.Bundle;
4+
import android.system.ErrnoException;
5+
import android.system.Os;
6+
7+
import org.qtproject.qt5.android.bindings.QtActivity;
8+
9+
import java.io.File;
10+
11+
public class BitcoinQtActivity extends QtActivity
12+
{
13+
@Override
14+
public void onCreate(Bundle savedInstanceState)
15+
{
16+
final File bitcoinDir = new File(getFilesDir().getAbsolutePath() + "/.bitcoin");
17+
if (!bitcoinDir.exists()) {
18+
bitcoinDir.mkdir();
19+
}
20+
21+
try {
22+
Os.setenv("QT_QPA_PLATFORM", "android", true);
23+
} catch (ErrnoException e) {
24+
e.printStackTrace();
25+
}
26+
27+
super.onCreate(savedInstanceState);
28+
}
29+
}

src/qt/bitcoin.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,12 @@ int GuiMain(int argc, char* argv[])
466466
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
467467
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
468468

469+
#if defined(QT_QPA_PLATFORM_ANDROID)
470+
QApplication::setAttribute(Qt::AA_DontUseNativeMenuBar);
471+
QApplication::setAttribute(Qt::AA_DontCreateNativeWidgetSiblings);
472+
QApplication::setAttribute(Qt::AA_DontUseNativeDialogs);
473+
#endif
474+
469475
BitcoinApplication app;
470476
QFontDatabase::addApplicationFont(":/fonts/monospace");
471477

0 commit comments

Comments
 (0)