-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
146 additions
and
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
gplay-keys.json | ||
play.keystore | ||
play.properties | ||
test.keystore | ||
update-dev.sh |
Binary file not shown.
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,10 @@ | ||
#!/bin/bash | ||
|
||
# Add appropriate files for encryption | ||
|
||
rm glass.tar.enc | ||
cd .. | ||
tar cvf glass.tar "files/gplay-keys.json" "files/play.keystore" "files/play.properties" "files/test.keystore" | ||
travis encrypt-file glass.tar --add | ||
rm glass.tar | ||
mv glass.tar.enc files/ |
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
|
||
<application | ||
tools:node="replace" | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:supportsRtl="true" | ||
android:theme="@style/DialogStyle">> | ||
<activity | ||
android:name="com.pitchedapps.material.glass.free.SubstratumLauncher"> | ||
<intent-filter> | ||
<action android:name="projekt.substratum.THEME" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<meta-data | ||
android:name="Substratum_Legacy" | ||
android:value="true" /> | ||
<meta-data | ||
android:name="Substratum_Name" | ||
android:value="@string/ThemeName" /> | ||
<meta-data | ||
android:name="Substratum_Author" | ||
android:value="@string/ThemeAuthor" /> | ||
<meta-data | ||
android:name="Substratum_Email" | ||
android:value="@string/ThemeEmail" /> | ||
<meta-data | ||
android:name="Substratum_ThemeReady" | ||
android:value="@string/ThemeType" /> | ||
|
||
<!-- SUBSTRATUM INTERNAL USE: DO NOT TOUCH --> | ||
<meta-data | ||
android:name="Substratum_Plugin" | ||
android:value="@string/ThemePlugin" /> | ||
</application> | ||
|
||
</manifest> |
10 changes: 10 additions & 0 deletions
10
substratum/src/Clear_full/java/com/pitchedapps/material/glass/free/SubstratumLauncher.java
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,10 @@ | ||
package com.pitchedapps.material.glass.free; | ||
|
||
import com.pitchedapps.material.glass.SubstratumLauncherCore; | ||
|
||
/** | ||
* Created by Allan Wang on 2016-08-03. | ||
*/ | ||
public class SubstratumLauncher extends SubstratumLauncherCore { | ||
|
||
} |
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
10 changes: 10 additions & 0 deletions
10
substratum/src/main/java/com/pitchedapps/material/glass/free/sample/SubstratumLauncher.java
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,10 @@ | ||
package com.pitchedapps.material.glass.free.sample; | ||
|
||
import com.pitchedapps.material.glass.SubstratumLauncherCore; | ||
|
||
/** | ||
* Created by Allan Wang on 2016-08-03. | ||
*/ | ||
public class SubstratumLauncher extends SubstratumLauncherCore { | ||
|
||
} |
Binary file not shown.