This repository has been archived by the owner on Jul 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: Ifdae8ace63975187b6db802d3e158b58f8aafb09
- Loading branch information
1 parent
ec3a377
commit 1e7a483
Showing
5 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
runtime_resource_overlay { | ||
name: "CertificationOverlay", | ||
theme: "CertificationOverlay", | ||
certificate: "platform", | ||
sdk_version: "current", | ||
product_specific: true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.android.certification.overlay"> | ||
<overlay android:isStatic="true" android:priority="0" android:targetName="CertificationOverlay" android:targetPackage="android"/> | ||
|
||
<application android:hasCode="false" android:label="CertificationOverlay"/> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<!-- Build properties from a GMS certified device --> | ||
<string-array name="config_certifiedBuildProperties" translatable="false"> | ||
<item>NVIDIA</item> <!-- Build.BRAND --> | ||
<item>NVIDIA</item> <!-- Build.MANUFACTURER --> | ||
<item></item> <!-- Build.ID --> | ||
<item>foster</item> <!-- Build.DEVICE --> | ||
<item>foster_e</item> <!-- Build.PRODUCT --> | ||
<item>SHIELD Android TV</item> <!-- Build.MODEL --> | ||
<item>NVIDIA/foster_e/foster:7.0/NRD90M/2427173_1038.2788:user/release-keys</item> <!-- Build.FINGERPRINT --> | ||
<item></item> <!-- Build.TYPE --> | ||
<item></item> <!-- Build.TAGS --> | ||
</string-array> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
### Build the service | ||
|
||
Add inherit on your vendor: | ||
|
||
```makefile | ||
$(call inherit-product-if-exists, vendor/certification/config.mk) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# RRO Overlays | ||
PRODUCT_PACKAGES += \ | ||
CertificationOverlay |