diff --git a/Android.bp b/Android.bp index b7e441b..333755e 100644 --- a/Android.bp +++ b/Android.bp @@ -1,8 +1,9 @@ java_library { - name: "framework-oxmc", + name: "pawlet-device", srcs: ["core/java/**/*.java"], - libs: ["framework"], - sdk_version: "system_current", - installable: false, - visibility: ["//frameworks/base/..."], + libs: ["core-libart"], + sdk_version: "current", + installable: true, + product_specific: true, + visibility: ["//packages/apps/..."], } \ No newline at end of file diff --git a/README.md b/README.md index b495104..c8dfc0e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # OxmcEnvironment Framework API -This repository contains the PawletOS framework API under `android.os.oxmc`. +This repository contains the PawletOS framework API under `pawletos.oxmc`. ## Features @@ -9,4 +9,4 @@ This repository contains the PawletOS framework API under `android.os.oxmc`. - Access to branding, codename, welcome message - Designed for apps and system code to import via: ```java - import android.os.oxmc.OxmcEnvironment; \ No newline at end of file + import pawlet.oxmc.OxmcEnvironment; \ No newline at end of file diff --git a/core/java/android/os/oxmc/OxmcEnvironment.java b/core/java/pawletos/device/OxmcEnvironment.java similarity index 98% rename from core/java/android/os/oxmc/OxmcEnvironment.java rename to core/java/pawletos/device/OxmcEnvironment.java index f34e24c..9fb4ed7 100644 --- a/core/java/android/os/oxmc/OxmcEnvironment.java +++ b/core/java/pawletos/device/OxmcEnvironment.java @@ -1,4 +1,4 @@ -package android.os.oxmc; +package pawletos.device; import android.content.Context; import android.os.Build;