Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add DU font package
Fonts taken from dafont.com and free to use for personal use and not commercial use. https://www.dafont.com/ According to 18 USCS § 31, term "used for commercial purposes" means the carriage of persons or property for any fare, fee, rate, charge or other consideration, or directly or indirectly in connection with any business, or other undertaking intended for profit. https://definitions.uslegal.com/u/used-for-commercial-purposes/ Since DU is not and will never be a for profit, we're in the clear :-) - Fonts xml files generated for these font zips thanks to @USA-RedDragon Change-Id: I1440d6c51ee25c7e465e83b2f4ec5099f03e741d
- Loading branch information
Showing
with
73 additions
and 0 deletions.
- +4 −0 config/packages.mk
- +4 −0 overlay/common/frameworks/base/core/res/res/values/config.xml
- +11 −0 themes/Fonts/Android.mk
- +8 −0 themes/Fonts/AndroidManifest.xml
- BIN themes/Fonts/assets/fonts/Alpaca.zip
- BIN themes/Fonts/assets/fonts/Atma.zip
- BIN themes/Fonts/assets/fonts/Big_River_Script.zip
- BIN themes/Fonts/assets/fonts/Caviar_Dreams.zip
- BIN themes/Fonts/assets/fonts/Google_Sans.zip
- BIN themes/Fonts/assets/fonts/Quick.zip
- BIN themes/Fonts/assets/fonts/Rounded_Elegance.zip
- BIN themes/Fonts/assets/fonts/Sony_Sketch.zip
- BIN themes/Fonts/assets/fonts/Storopia.zip
- BIN themes/Fonts/assets/fonts/Ubuntu.zip
- BIN themes/Fonts/assets/fonts/Unicorn.zip
- BIN themes/Fonts/assets/fonts/Walkway.zip
- BIN themes/Fonts/res/mipmap-hdpi/ic_launcher.png
- BIN themes/Fonts/res/mipmap-mdpi/ic_launcher.png
- BIN themes/Fonts/res/mipmap-xhdpi/ic_launcher.png
- BIN themes/Fonts/res/mipmap-xxhdpi/ic_launcher.png
- BIN themes/Fonts/res/mipmap-xxxhdpi/ic_launcher.png
- +23 −0 themes/Fonts/res/values/bools.xml
- +23 −0 themes/Fonts/res/values/strings.xml
@@ -0,0 +1,11 @@ | ||
LOCAL_PATH:= $(call my-dir) | ||
include $(CLEAR_VARS) | ||
|
||
LOCAL_MODULE_TAGS := optional | ||
|
||
LOCAL_PACKAGE_NAME := DU-Fonts | ||
LOCAL_SDK_VERSION := current | ||
LOCAL_CERTIFICATE := platform | ||
LOCAL_PRIVILEGED_MODULE := false | ||
|
||
include $(BUILD_PACKAGE) |
@@ -0,0 +1,8 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.dirtyunicorns.fonts"> | ||
|
||
<application android:label="@string/app_name" | ||
android:icon="@mipmap/ic_launcher" | ||
android:hasCode="false"/> | ||
|
||
</manifest> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
/** | ||
* Copyright (c) 2017, The Android Open Source 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. | ||
*/ | ||
--> | ||
<resources> | ||
|
||
<bool name="custom_rom_font_provider">true</bool> | ||
|
||
</resources> |
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
/** | ||
* Copyright (c) 2017, The Android Open Source 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. | ||
*/ | ||
--> | ||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> | ||
|
||
<string name="app_name">DU Fonts</string> | ||
|
||
</resources> |