deep link fix, layout fix, gradle dependencies update

This commit is contained in:
NudeDude 2019-09-15 11:50:44 +02:00
parent 59a3455c4e
commit 3a51617180
3 changed files with 7 additions and 8 deletions

View File

@ -8,7 +8,7 @@ android {
applicationId 'org.nuclearfog.twidda' applicationId 'org.nuclearfog.twidda'
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 28 targetSdkVersion 28
versionCode 2 versionCode 3
versionName '1.5.4' versionName '1.5.4'
vectorDrawables.useSupportLibrary true vectorDrawables.useSupportLibrary true
} }
@ -22,7 +22,7 @@ android {
debuggable false debuggable false
minifyEnabled true minifyEnabled true
shrinkResources true shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
} }
debug { debug {
minifyEnabled false minifyEnabled false
@ -34,10 +34,10 @@ android {
dependencies { dependencies {
implementation 'com.google.android.material:material:1.0.0' implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0-rc01' implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.exifinterface:exifinterface:1.0.0' implementation 'androidx.exifinterface:exifinterface:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.vectordrawable:vectordrawable:1.0.1' implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

View File

@ -59,13 +59,11 @@
<intent-filter> <intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.BROWSABLE" />
<data <data
android:host="*.twitter.com" android:host="*.twitter.com"
android:pathPattern="\\/.*\\/status\\/.*" android:pathPattern="\\/..*\\/status\\/..*"
android:scheme="https" /> android:scheme="https" />
</intent-filter> </intent-filter>

View File

@ -21,7 +21,8 @@
style="@style/ProfileImageCardView" style="@style/ProfileImageCardView"
android:layout_width="@dimen/profile_small" android:layout_width="@dimen/profile_small"
android:layout_height="@dimen/profile_small" android:layout_height="@dimen/profile_small"
android:layout_marginRight="@dimen/margin_layout"> android:layout_marginRight="@dimen/margin_layout"
android:layout_marginEnd="@dimen/margin_layout">
<ImageView <ImageView
android:id="@+id/tweetPb" android:id="@+id/tweetPb"