-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from CreaRo/feature-icon-pack
Feature icon pack
- Loading branch information
Showing
11 changed files
with
581 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 23 | ||
buildToolsVersion "23.0.3" | ||
|
||
defaultConfig { | ||
applicationId "nickrout.lenslauncher" | ||
minSdkVersion 16 | ||
targetSdkVersion 23 | ||
<<<<<<< HEAD | ||
versionCode 20 | ||
versionName "1.2" | ||
======= | ||
versionCode 14 | ||
versionName "1.2.0" | ||
>>>>>>> 0c9969d213bbd5efac04492932bd13b6d97bacc0 | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
testCompile 'junit:junit:4.12' | ||
compile 'com.android.support:appcompat-v7:23.4.0' | ||
compile 'com.pavelsikun:vintage-chroma:1.4' | ||
compile 'com.github.satyan:sugar:1.5' | ||
compile 'com.afollestad.material-dialogs:core:0.8.5.9' | ||
} |
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,73 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="nickrout.lenslauncher"> | ||
|
||
<application | ||
android:name="com.orm.SugarApp" | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
|
||
<meta-data | ||
android:name="DATABASE" | ||
android:value="app_persistent.db" /> | ||
<meta-data | ||
android:name="VERSION" | ||
<<<<<<< HEAD | ||
android:value="2" /> | ||
======= | ||
android:value="3" /> | ||
>>>>>>> 0c9969d213bbd5efac04492932bd13b6d97bacc0 | ||
<meta-data | ||
android:name="QUERY_LOG" | ||
android:value="false" /> | ||
<meta-data | ||
android:name="DOMAIN_PACKAGE_NAME" | ||
android:value="nickrout.lenslauncher.model" /> | ||
|
||
<activity | ||
android:name=".ui.HomeActivity" | ||
android:label="@string/app_name" | ||
android:launchMode="singleTask" | ||
android:screenOrientation="portrait" | ||
android:stateNotNeeded="true" | ||
android:theme="@style/HomeTheme"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.HOME" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<receiver android:name=".ui.HomeActivity$AppsUpdatedReceiver"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.PACKAGE_ADDED" /> | ||
<action android:name="android.intent.action.PACKAGE_REMOVED" /> | ||
<action android:name="android.intent.action.PACKAGE_CHANGED" /> | ||
<action android:name="android.intent.action.PACKAGE_REPLACED" /> | ||
|
||
<data android:scheme="package" /> | ||
</intent-filter> | ||
</receiver> | ||
|
||
<activity | ||
android:name=".ui.SettingsActivity" | ||
android:label="@string/app_name" | ||
android:screenOrientation="portrait"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity | ||
android:name=".ui.AboutActivity" | ||
android:label="@string/activity_title_about" | ||
android:screenOrientation="portrait"> | ||
</activity> | ||
|
||
</application> | ||
|
||
</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
Oops, something went wrong.