-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updates to renderscript 20 updates publish script adds debugview
- Loading branch information
1 parent
88156c7
commit c545195
Showing
12 changed files
with
220 additions
and
198 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,10 @@ | ||
# Releases | ||
|
||
## v0.3.0 | ||
* first version in jcenter | ||
* updates renderscriptTargetApi to 20 | ||
* updates target sdk and build tools to 25 | ||
* adds debug view in app | ||
|
||
## v0.2.0 | ||
initial release |
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,26 +1,30 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="at.favre.app.dalitest" > | ||
<manifest package="at.favre.app.dalitest" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<application | ||
android:name=".DaliTestApplication" | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:name=".DaliTestApplication" | ||
android:theme="@style/AppTheme" > | ||
android:theme="@style/AppTheme"> | ||
<activity | ||
android:name=".activity.MainMenuActivity" | ||
android:label="@string/app_name" > | ||
android:label="@string/app_name"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<action android:name="android.intent.action.MAIN"/> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity android:name=".activity.GenericActivity" | ||
android:windowSoftInputMode="stateHidden"/> | ||
<activity | ||
android:name=".activity.GenericActivity" | ||
android:windowSoftInputMode="stateHidden"/> | ||
<activity android:name=".activity.NavigationDrawerActivity"/> | ||
<activity | ||
android:name=".activity.DebugActivity" | ||
android:label="Debug View" | ||
android:theme="@style/HoodThemeDark"/> | ||
</application> | ||
|
||
</manifest> |
24 changes: 24 additions & 0 deletions
24
DaliTestApp/src/main/java/at/favre/app/dalitest/activity/DebugActivity.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,24 @@ | ||
package at.favre.app.dalitest.activity; | ||
|
||
import android.support.annotation.NonNull; | ||
|
||
import at.favre.app.dalitest.BuildConfig; | ||
import at.favre.lib.hood.extended.PopHoodActivity; | ||
import at.favre.lib.hood.interfaces.Page; | ||
import at.favre.lib.hood.interfaces.Pages; | ||
import at.favre.lib.hood.util.defaults.DefaultProperties; | ||
|
||
public class DebugActivity extends PopHoodActivity { | ||
@NonNull | ||
@Override | ||
public Pages getPageData(@NonNull Pages emptyPages) { | ||
Page page = emptyPages.addNewPage(); | ||
page.add(DefaultProperties.createSectionBasicDeviceInfo()); | ||
page.add(DefaultProperties.createDetailedDeviceInfo(this)); | ||
page.add(DefaultProperties.createSectionAppVersionInfoFromBuildConfig(BuildConfig.class)); | ||
page.add(DefaultProperties.createSectionAppVersionInfoFromBuildConfig(at.favre.lib.dali.BuildConfig.class).removeHeader()); | ||
|
||
|
||
return emptyPages; | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.