From da25fa7bbcc90782713b7714e1b520b354f32e7b Mon Sep 17 00:00:00 2001 From: oxmc <67136658+oxmc@users.noreply.github.com> Date: Mon, 18 Aug 2025 19:50:49 -0700 Subject: [PATCH] Modify files --- Android.bp | 11 ++++++----- README.md | 4 ++-- .../os/oxmc => pawletos/device}/OxmcEnvironment.java | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) rename core/java/{android/os/oxmc => pawletos/device}/OxmcEnvironment.java (98%) 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;