mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
3bd4038089
* [IOS Only] react-native 0.63 to 0.67 * [Android Only] react-native 0.63 to 0.67 * bring back all the jenkinsfiles * make auto-complete prop for text-input compatible * [IOS Only] react-native 0.63 to 0.67 * [Android Only] react-native 0.63 to 0.67 * bring back all the jenkinsfiles * nix: drop unnecessary set -x from status-go build Signed-off-by: Jakub Sokołowski <jakub@status.im> * add explicity implementation line for soloader And add deleteDebugFilesForVariant fix for libhermes. Signed-off-by: Jakub Sokołowski <jakub@status.im> * use fast-image for link previews * fix extra line in message composer on android This elevation prop is un-necessary and causes an extra line to appear which looks like a border but its actually a shadow. * don't use `fast-image` for url preview favicon * fix audio record button interfering cancel android This fix was not needed in react-native 0.63.4 but is needed after we upgraded to 0.67.5 * get rid of unused platform import --------- Co-authored-by: Jakub Sokołowski <jakub@status.im>
23 lines
557 B
Nix
23 lines
557 B
Nix
#
|
|
# This Nix expression centralizes the configuration
|
|
# for the Android development environment.
|
|
#
|
|
|
|
{ androidenv }:
|
|
|
|
# The "android-sdk-license" license is accepted
|
|
# by setting android_sdk.accept_license = true.
|
|
androidenv.composeAndroidPackages {
|
|
toolsVersion = "26.1.1";
|
|
platformToolsVersion = "33.0.2";
|
|
buildToolsVersions = [ "30.0.0" ];
|
|
platformVersions = [ "31" ];
|
|
cmakeVersions = [ "3.18.1" ];
|
|
ndkVersion = "22.1.7171670";
|
|
includeNDK = true;
|
|
includeExtras = [
|
|
"extras;android;m2repository"
|
|
"extras;google;m2repository"
|
|
];
|
|
}
|