Skip to content

Commit

Permalink
20210714
Browse files Browse the repository at this point in the history
- 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
FredHappyface committed Jul 23, 2021
1 parent 3a17799 commit 927c947
Show file tree
Hide file tree
Showing 24 changed files with 1,470 additions and 426 deletions.
117 changes: 117 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

906 changes: 906 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
All major and minor version changes will be documented in this file. Details of
patch-level version changes can be found in [commit messages](../../commits/master).


## 20210714 - 2021/07/14
- Added link to online tutorial (on GitHub)
- Ignore the compat sticker when creating groups
- SVG back arrow
- Add headings to UI
- Removed unnecessary permissions


## 20210612 - 2021/06/12
- Changes from upstream:
- Merged `ui-update`, `feature_distributed_apks`, `fallback`. Providing a fresher
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "com.fredhappyface.ewesticker"
minSdkVersion 28
targetSdkVersion 30
versionCode 20210623
versionName "2021.06.23"
versionCode 20210714
versionName "2021.07.17"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
85 changes: 41 additions & 44 deletions app/src/main/AndroidManifest.xml
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>
16 changes: 8 additions & 8 deletions app/src/main/res/drawable/ic_chevron_left.xml
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>
Loading

0 comments on commit 927c947

Please sign in to comment.