Put xml file "api_keys.xml" in the directory "res/value/".
api_keys.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="THE_MOVIE_DB_API_TOKEN">XXXXX</string>
</resources>
#!/bin/bash | |
cat << EOF | |
########################################################### | |
# Workaround adb disconnecting issue on macOS Sierra | |
# | |
# More info: | |
# https://code.google.com/p/android/issues/detail?id=219085 | |
# credits to: [email protected], [email protected] | |
########################################################### |
#!/bin/bash | |
# current workstation architecture (values: MACOSX, MACOSX32, MACOSX64, LINUX, LINUX32, LINUX64, WIN32, WIN64) | |
WORKSTATION_ACTIVE_ARCH="MACOSX" | |
# android ndk (revision version, workstation arch, install prefix path) | |
ANDROID_NDK_VERSION="r10e" | |
ANDROID_NDK_PLATFORM="darwin" | |
ANDROID_NDK_PLATFORM_ARCH="x86_64" |
System: Debian/Ubuntu/Fedora. Might work for others as well.
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go
directory by:
# | |
# | |
# | |
# | |
# autogenerated by oem_buildinfo.sh | |
persist.sys.kernel=yes | |
persist.sys.main=yes | |
persist.sys.system=yes | |
persist.sys.radio=yes |
#!/bin/bash | |
cd `dirname $0`/../ | |
projectDir=`pwd` | |
buildDir="$projectDir/build" | |
# release Official apk | |
cd $buildDir | |
touch timestampFile | |
echo "Build release official apk" |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{00000000-0000-0000-ba54-000000000002}", | |
"launchMode": "maximized", | |
"theme": "light", | |
"useTabSwitcher": false, | |
"tabWidthMode": "titleLength", | |
"profiles": { |