-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update react native to latest 0.61.4 and android sdk version to 28 since Google Play does not allow to upload older apps anymore.
- Loading branch information
Showing
71 changed files
with
3,827 additions
and
5,598 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
"""Helper definitions to glob .aar and .jar targets""" | ||
def create_aar_targets(aarfiles): | ||
for aarfile in aarfiles: | ||
name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] | ||
lib_deps.append(":" + name) | ||
android_prebuilt_aar( | ||
name = name, | ||
aar = aarfile, | ||
) | ||
def create_jar_targets(jarfiles): | ||
for jarfile in jarfiles: | ||
name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] | ||
lib_deps.append(":" + name) | ||
prebuilt_jar( | ||
name = name, | ||
binary_jar = jarfile, | ||
) |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> | ||
<application tools:replace="android:networkSecurityConfig" android:networkSecurityConfig="@xml/network_security_config_debug" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" /> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-414 Bytes
.../main/res/drawable-mdpi/node_modules_reactnativedropdownalert_assets_cancel.png
Binary file not shown.
Binary file removed
BIN
-492 Bytes
...c/main/res/drawable-mdpi/node_modules_reactnativedropdownalert_assets_error.png
Binary file not shown.
Binary file removed
BIN
-485 Bytes
...rc/main/res/drawable-mdpi/node_modules_reactnativedropdownalert_assets_info.png
Binary file not shown.
Binary file removed
BIN
-459 Bytes
...main/res/drawable-mdpi/node_modules_reactnativedropdownalert_assets_success.png
Binary file not shown.
Binary file removed
BIN
-325 Bytes
...rc/main/res/drawable-mdpi/node_modules_reactnativedropdownalert_assets_warn.png
Binary file not shown.
Binary file removed
BIN
-141 KB
android/app/src/main/res/drawable-mdpi/src_assets_backgroundlogo.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-1.6 KB
android/app/src/main/res/drawable-mdpi/src_assets_quality_medium.png
Binary file not shown.
Binary file removed
BIN
-1.59 KB
android/app/src/main/res/drawable-mdpi/src_assets_quality_unknown.png
Binary file not shown.
Binary file removed
BIN
-4.61 KB
android/app/src/main/res/drawable-mdpi/src_assets_services_openvpn.png
Binary file not shown.
Binary file removed
BIN
-19.1 KB
android/app/src/main/res/drawable-mdpi/src_assets_services_wireguard.png
Binary file not shown.
Binary file removed
BIN
-754 Bytes
...main/res/drawable-xhdpi/node_modules_reactnativedropdownalert_assets_cancel.png
Binary file not shown.
Binary file removed
BIN
-979 Bytes
.../main/res/drawable-xhdpi/node_modules_reactnativedropdownalert_assets_error.png
Binary file not shown.
Binary file removed
BIN
-953 Bytes
...c/main/res/drawable-xhdpi/node_modules_reactnativedropdownalert_assets_info.png
Binary file not shown.
Binary file removed
BIN
-734 Bytes
...ain/res/drawable-xhdpi/node_modules_reactnativedropdownalert_assets_success.png
Binary file not shown.
Binary file removed
BIN
-473 Bytes
...c/main/res/drawable-xhdpi/node_modules_reactnativedropdownalert_assets_warn.png
Binary file not shown.
Binary file removed
BIN
-1.09 KB
...ain/res/drawable-xxhdpi/node_modules_reactnativedropdownalert_assets_cancel.png
Binary file not shown.
Binary file removed
BIN
-1.46 KB
...main/res/drawable-xxhdpi/node_modules_reactnativedropdownalert_assets_error.png
Binary file not shown.
Binary file removed
BIN
-1.45 KB
.../main/res/drawable-xxhdpi/node_modules_reactnativedropdownalert_assets_info.png
Binary file not shown.
Binary file removed
BIN
-1 KB
...in/res/drawable-xxhdpi/node_modules_reactnativedropdownalert_assets_success.png
Binary file not shown.
Binary file removed
BIN
-691 Bytes
.../main/res/drawable-xxhdpi/node_modules_reactnativedropdownalert_assets_warn.png
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<network-security-config> | ||
<domain-config cleartextTrafficPermitted="true"> | ||
<domain includeSubdomains="true">localhost</domain> | ||
<domain includeSubdomains="true">127.0.0.1</domain> | ||
</domain-config> | ||
</network-security-config> |
4 changes: 4 additions & 0 deletions
4
android/app/src/main/res/xml/network_security_config_debug.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<network-security-config> | ||
<base-config cleartextTrafficPermitted="true"/> | ||
</network-security-config> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.