diff options
author | Sean Leonard <meanderingcode@aetherislands.net> | 2013-06-25 08:14:26 -0600 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2013-07-24 19:11:56 +0200 |
commit | 58b96c50015aea4c46111f62a040b6a1a056ac0e (patch) | |
tree | b5afb3e5a50e29797d083b9b816d228133cf916c | |
parent | aeee3b18b151c81ea67d1b540a97ce1ec887bf73 (diff) |
Proper API level targeting: min 14, target 17
-rw-r--r-- | AndroidManifest.xml | 6 | ||||
-rw-r--r-- | project.properties | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 95997475..f514b365 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -27,8 +27,8 @@ <!-- <uses-permission android:name="com.android.vending.BILLING" /> --> <uses-sdk - android:minSdkVersion="15" - android:targetSdkVersion="15" /> + android:minSdkVersion="14" + android:targetSdkVersion="17" /> <permission android:name="se.leap.openvpn.REMOTE_API" @@ -163,4 +163,4 @@ </service> </application> -</manifest>
\ No newline at end of file +</manifest> diff --git a/project.properties b/project.properties index 895c9ce2..c4f09d2b 100644 --- a/project.properties +++ b/project.properties @@ -8,4 +8,4 @@ # project structure. # Project target. -target=android-16 +target=android-17 |