summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemi NGUYEN VAN <reminv@google.com>2019-03-05 10:14:54 +0900
committerRemi NGUYEN VAN <reminv@google.com>2019-03-05 11:12:14 +0900
commitbc987a3e7cf5e76c90aad1c2d3393aca5fb1af76 (patch)
tree6388a2e627da756edcd3ba4bce132429bda1af3c
parent189c598dc705aadfd751f6978efb12077ae131b9 (diff)
Set module min_sdk_version to 28
The modules are not actually compatible with 28, but this is necessary as tooling does not support "Q" as a version in the APK. This will need to be changed to the new version number as soon as it is available. Test: m Change-Id: I1d88f80c293b4667244d219a6989dd11be90f12a
-rw-r--r--Android.bp1
-rw-r--r--AndroidManifest.xml2
2 files changed, 2 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 5f1f26d..f210840 100644
--- a/Android.bp
+++ b/Android.bp
@@ -36,6 +36,7 @@ java_library {
android_app {
name: "NetworkStack",
sdk_version: "system_current",
+ min_sdk_version: "28",
certificate: "networkstack",
privileged: true,
static_libs: [
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 740c573..003f1e5 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -19,7 +19,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.networkstack"
android:sharedUserId="android.uid.networkstack"
- android:versionCode="10"
+ android:versionCode="11"
android:versionName="Q-initial">
<uses-sdk android:minSdkVersion="28" android:targetSdkVersion="28" />
<uses-permission android:name="android.permission.INTERNET" />