mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-03 01:39:18 +02:00

Debug builds of the core (like `ndk-make.sh arm64-v8a`) take about a minute, while a release bulid (`ndk-make.sh`) takes about 15 minutes. But as most people seem not to use debug builds regularly because they are tricky to use, here comes an improvement :) If you gave the wrong argument to `ndk-make.sh`, a warning dialog will now pop up inside the app, telling you what you did wrong and what you should do instead. `ndk-make.sh` writes its argument into the file `ndkArch`. `getNdkArch()` in `build.gradle` then reads this file and its content is assigned to `BuildConfig.NDK_ARCH`. `checkNdkArchitecture()` then checks this.
47 lines
636 B
Text
47 lines
636 B
Text
*.keystore
|
|
.classpath
|
|
project.properties
|
|
.project
|
|
.settings
|
|
bin/
|
|
gen/
|
|
gplay/
|
|
.idea/
|
|
*.iml
|
|
*.so
|
|
out
|
|
tests
|
|
lint.xml
|
|
local.properties
|
|
ant.properties
|
|
.DS_Store
|
|
build.log
|
|
build-log.xml
|
|
.gradle
|
|
build
|
|
signing.properties
|
|
library/lib/
|
|
library/obj/
|
|
ffpr
|
|
test/androidTestEspresso/res/values/arrays.xml
|
|
obj/
|
|
jni/libspeex/.deps/
|
|
ndkArch
|
|
|
|
# ignore debug symbols created by ./tools/upload-release.sh
|
|
*-symbols.zip
|
|
|
|
# ignore private scripts and directories, eg. local2github.prv.sh
|
|
*.prv*
|
|
|
|
# contains files for ndk-build when done from gradle.
|
|
.externalNativeBuild
|
|
|
|
# no vi tmp files
|
|
*.swp
|
|
|
|
jni/x86
|
|
jni/x86_64
|
|
jni/armeabi
|
|
jni/armeabi-v7a
|
|
jni/arm64-v8a
|