-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added link to online tutorial (on GitHub) - Ignore the compat sticker when creating groups - SVG back arrow - Add headings to UI - Removed unnecessary permissions
- Loading branch information
1 parent
3a17799
commit 927c947
Showing
24 changed files
with
1,470 additions
and
426 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,50 +1,47 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
package="com.fredhappyface.ewesticker"> | ||
xmlns:tools="http://schemas.android.com/tools" | ||
package="com.fredhappyface.ewesticker"> | ||
|
||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> | ||
<application | ||
android:allowBackup="false" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme" | ||
android:usesCleartextTraffic="true" | ||
tools:ignore="GoogleAppIndexingWarning"> | ||
<activity | ||
android:name="com.fredhappyface.ewesticker.MainActivity" | ||
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" | ||
android:exported="true" | ||
android:label="@string/app_name" | ||
android:windowSoftInputMode="adjustResize"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<service | ||
android:name="com.fredhappyface.ewesticker.ImageKeyboard" | ||
android:label="EweSticker" | ||
android:permission="android.permission.BIND_INPUT_METHOD"> | ||
<meta-data | ||
android:name="android.view.im" | ||
android:resource="@xml/method" /> | ||
<intent-filter> | ||
<action android:name="android.view.InputMethod" /> | ||
</intent-filter> | ||
</service> | ||
|
||
<application | ||
android:allowBackup="false" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme" | ||
android:usesCleartextTraffic="true" | ||
tools:ignore="GoogleAppIndexingWarning"> | ||
<activity | ||
android:name="com.fredhappyface.ewesticker.MainActivity" | ||
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" | ||
android:exported="true" | ||
android:label="@string/app_name" | ||
android:windowSoftInputMode="adjustResize"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<service | ||
android:name="com.fredhappyface.ewesticker.ImageKeyboard" | ||
android:label="EweSticker" | ||
android:permission="android.permission.BIND_INPUT_METHOD"> | ||
<meta-data | ||
android:name="android.view.im" | ||
android:resource="@xml/method" /> | ||
<intent-filter> | ||
<action android:name="android.view.InputMethod" /> | ||
</intent-filter> | ||
</service> | ||
<provider | ||
android:name="androidx.core.content.FileProvider" | ||
android:authorities="com.fredhappyface.ewesticker.inputcontent" | ||
android:exported="false" | ||
android:grantUriPermissions="true"> | ||
<meta-data | ||
android:name="android.support.FILE_PROVIDER_PATHS" | ||
android:resource="@xml/file_paths" /> | ||
</provider> | ||
|
||
<provider | ||
android:name="androidx.core.content.FileProvider" | ||
android:authorities="com.fredhappyface.ewesticker.inputcontent" | ||
android:exported="false" | ||
android:grantUriPermissions="true"> | ||
<meta-data | ||
android:name="android.support.FILE_PROVIDER_PATHS" | ||
android:resource="@xml/file_paths" /> | ||
</provider> | ||
|
||
</application> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="16dp" | ||
android:height="16dp" | ||
android:viewportWidth="16" | ||
android:viewportHeight="16"> | ||
<path | ||
android:fillColor="@color/fg" | ||
android:fillType="evenOdd" | ||
android:pathData="M9.78,12.78a0.75,0.75 0,0 1,-1.06 0L4.47,8.53a0.75,0.75 0,0 1,0 -1.06l4.25,-4.25a0.75,0.75 0,0 1,1.06 1.06L6.06,8l3.72,3.72a0.75,0.75 0,0 1,0 1.06z" /> | ||
android:width="16dp" | ||
android:height="16dp" | ||
android:viewportWidth="16" | ||
android:viewportHeight="16"> | ||
<path | ||
android:fillColor="@color/fg" | ||
android:fillType="evenOdd" | ||
android:pathData="M9.78,12.78a0.75,0.75 0,0 1,-1.06 0L4.47,8.53a0.75,0.75 0,0 1,0 -1.06l4.25,-4.25a0.75,0.75 0,0 1,1.06 1.06L6.06,8l3.72,3.72a0.75,0.75 0,0 1,0 1.06z" /> | ||
</vector> |
Oops, something went wrong.