forked from strato-emu/strato
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revamp
LicenseDialog
+ Update Licenses + Stop Bintray Usage
* Update licenses for dependent projects * Add copyright notices (as provided) * Revamp styling for `LicenseDialog` * Fix invisible `PreferenceDialog` buttons in Settings * Consolidating color variables into `colorPrimary`, `backgroundColor` and `backgroundColorVariant` * Use `com.google.android.flexbox:flexbox:3.0.0` (Google Maven) rather than `com.google.android:flexbox:2.0.1` (Bintray)
- Loading branch information
Showing
16 changed files
with
319 additions
and
141 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
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
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
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
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
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 |
---|---|---|
@@ -1,30 +1,54 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content"> | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content"> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical" | ||
android:paddingHorizontal="2.5dp" | ||
android:paddingTop="10dp"> | ||
|
||
<TextView | ||
android:id="@+id/library_title" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:textAlignment="center" | ||
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline5" | ||
android:textSize="25sp" | ||
tools:text="Skyline" /> | ||
|
||
<TextView | ||
android:id="@+id/library_url" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical" | ||
android:paddingTop="10dp"> | ||
android:autoLink="web" | ||
android:textAlignment="center" | ||
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline5" | ||
android:textSize="15sp" | ||
tools:text="https://github.com/skyline-emu/skyline" /> | ||
|
||
<TextView | ||
android:id="@+id/license_url" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:autoLink="web" | ||
android:textAlignment="center" | ||
android:textAppearance="@style/TextAppearance.AppCompat.Body2" | ||
android:textSize="15sp" /> | ||
android:id="@+id/library_copyright" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:paddingTop="10dp" | ||
android:textAlignment="center" | ||
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline4" | ||
android:textSize="17sp" | ||
tools:text="Copyright © 2019-2021 Skyline Team and Contributors (https://github.com/skyline-emu/)" /> | ||
|
||
<TextView | ||
android:id="@+id/license_content" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:padding="10dp" | ||
android:textAlignment="center" | ||
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1" /> | ||
android:id="@+id/license_content" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:autoLink="web" | ||
android:paddingTop="10dp" | ||
android:textAlignment="center" | ||
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1" | ||
tools:text="@string/mpl2_license" /> | ||
|
||
</LinearLayout> | ||
</ScrollView> |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="colorPrimary">#FF424242</color> | ||
<color name="colorPrimaryVariant">#FF121212</color> | ||
<color name="backgroundColor">#FF121212</color> | ||
<color name="backgroundColorVariant">#323232</color> | ||
</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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="colorPrimary">@color/cardview_light_background</color> | ||
<color name="colorPrimaryVariant">@android:color/white</color> | ||
<color name="colorOnPrimary">#FFFF0000</color> | ||
<color name="colorPrimary">#FFFF0000</color> | ||
<color name="backgroundColor">@android:color/white</color> | ||
<color name="backgroundColorVariant">#F8F8F8</color> | ||
</resources> |
Oops, something went wrong.