Skip to content

Commit

Permalink
Bump version and disable auto verification
Browse files Browse the repository at this point in the history
Auto verification made it impossible to select the stream activity since
the setting is app-wide.
  • Loading branch information
rubengees committed Apr 18, 2018
1 parent 4a71f92 commit 378a1fa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ext {
// App
appVersionMajor = 1
appVersionMinor = 4
appVersionPatch = 0
appVersionPatch = 1

minSdkVersion = 16
targetSdkVersion = 27
Expand Down Expand Up @@ -33,7 +33,7 @@ ext {
lifecycleVersion = '1.1.1'
roomVersion = '1.1.0-beta2'
androidJobVersion = '1.2.5'
proxerLibVersion = '4.4.0'
proxerLibVersion = '4.4.1'

// RxJava
rxJavaVersion = '2.1.12'
Expand Down
13 changes: 7 additions & 6 deletions src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter android:autoVerify="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
Expand Down Expand Up @@ -127,7 +127,7 @@
<activity
android:name=".profile.ProfileActivity"
android:theme="@style/Theme.App.Translucent">
<intent-filter android:autoVerify="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
Expand Down Expand Up @@ -176,7 +176,7 @@
<activity
android:name=".media.MediaActivity"
android:theme="@style/Theme.App.Translucent">
<intent-filter android:autoVerify="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
Expand Down Expand Up @@ -210,6 +210,7 @@
android:name=".anime.StreamActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|uiMode">
<intent-filter tools:ignore="AppLinkUrlError">

<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />

Expand All @@ -220,7 +221,7 @@
</activity>

<activity android:name=".manga.MangaActivity">
<intent-filter android:autoVerify="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
Expand Down Expand Up @@ -249,7 +250,7 @@
</activity>

<activity android:name=".anime.AnimeActivity">
<intent-filter android:autoVerify="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
Expand All @@ -268,7 +269,7 @@
</activity>

<activity android:name=".forum.TopicActivity">
<intent-filter android:autoVerify="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
Expand Down

0 comments on commit 378a1fa

Please sign in to comment.