diff --git a/Android.bp b/Android.bp new file mode 100644 index 00000000..270acf61 --- /dev/null +++ b/Android.bp @@ -0,0 +1,49 @@ +// +// Copyright (C) 2021 The LineageOS Project +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +android_app { + name: "LineageSetupWizard", + + srcs: ["src/**/*.java"], + + certificate: "platform", + privileged: true, + platform_apis: true, + + overrides: ["Provision"], + + optimize: { + proguard_flags_files: ["proguard.flags"], + }, + + static_libs: [ + "androidx.core_core", + "setupcompat", + "setupdesign", + "org.lineageos.platform.internal", + ], + + libs: ["telephony-common"], + + required: ["privapp_whitelist_org.lineageos.setupwizard"], +} + +prebuilt_etc { + name: "privapp_whitelist_org.lineageos.setupwizard", + src: "privapp_whitelist_org.lineageos.setupwizard.xml", + sub_dir: "permissions", + filename_from_src: true, +} diff --git a/Android.mk b/Android.mk deleted file mode 100644 index 256b5019..00000000 --- a/Android.mk +++ /dev/null @@ -1,44 +0,0 @@ -LOCAL_PATH := $(call my-dir) -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := $(call all-java-files-under, src) - -LOCAL_MODULE_TAGS := optional - -LOCAL_PACKAGE_NAME := LineageSetupWizard -LOCAL_CERTIFICATE := platform -LOCAL_PRIVILEGED_MODULE := true -LOCAL_OVERRIDES_PACKAGES := Provision - -LOCAL_PRIVATE_PLATFORM_APIS := true - -LOCAL_PROGUARD_FLAG_FILES := proguard.flags - -LOCAL_STATIC_ANDROID_LIBRARIES := \ - androidx.core_core \ - setupcompat \ - setupdesign - -LOCAL_STATIC_JAVA_LIBRARIES := \ - org.lineageos.platform.internal - -LOCAL_JAVA_LIBRARIES := \ - telephony-common - -LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res - -LOCAL_USE_AAPT2 := true - -LOCAL_REQUIRED_MODULES := privapp_whitelist_org.lineageos.setupwizard.xml - -include $(BUILD_PACKAGE) - -include $(CLEAR_VARS) -LOCAL_MODULE := privapp_whitelist_org.lineageos.setupwizard.xml -LOCAL_MODULE_CLASS := ETC -LOCAL_MODULE_TAGS := optional -LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions -LOCAL_SRC_FILES := $(LOCAL_MODULE) -include $(BUILD_PREBUILT) - -include $(call all-makefiles-under,$(LOCAL_PATH))