[tor-commits] [orbot/master] Removes warning on ndk-build where the target API for NDK (16) is

n8fr8 at torproject.org n8fr8 at torproject.org
Fri Jul 5 12:40:01 UTC 2019


commit 917e49f55dba8ba4cafeb24ee6372c9cba01e1ae
Author: bim <dsnake at protonmail.com>
Date:   Thu May 30 14:12:42 2019 -0400

    Removes warning on ndk-build where the target API for NDK (16) is
    greater than the sdk version defined for the project. Since nothing
    was specified in the manifest it defaulted to 1 but we can set this
    to Orbot's minSdkVersion of 16 to get rid of this warning
---
 orbotservice/src/main/AndroidManifest.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/orbotservice/src/main/AndroidManifest.xml b/orbotservice/src/main/AndroidManifest.xml
index 4b1691d7..0f70c64b 100644
--- a/orbotservice/src/main/AndroidManifest.xml
+++ b/orbotservice/src/main/AndroidManifest.xml
@@ -1,5 +1,5 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="org.torproject.android.service">
     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
-
+    <uses-sdk android:minSdkVersion="16"/>
 </manifest>





More information about the tor-commits mailing list