1
0
Fork 0

Updated dependencies and target sdk

This commit is contained in:
nin0dev 2024-03-20 07:35:28 -04:00
parent d6b8ab936d
commit 8418977ccf
3 changed files with 10 additions and 6 deletions

View file

@ -4,12 +4,12 @@ plugins {
android { android {
namespace 'dev.vencord.vendroid' namespace 'dev.vencord.vendroid'
compileSdk 33 compileSdk 34
defaultConfig { defaultConfig {
applicationId "dev.vencord.vendroid" applicationId "dev.vencord.vendroid"
minSdk 21 minSdk 21
targetSdk 33 targetSdk 34
versionCode 3 versionCode 3
versionName "1.0" versionName "1.0"
} }
@ -30,6 +30,7 @@ android {
} }
dependencies { dependencies {
implementation 'androidx.annotation:annotation:1.5.0' implementation 'androidx.annotation:annotation:1.7.1'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.28'
} }

View file

@ -11,7 +11,7 @@
android:allowBackup="true" android:allowBackup="true"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/LoadingTheme" android:theme="@style/LoadingTheme"
tools:targetApi="31" tools:targetApi="34"
> >
<activity <activity
android:name=".MainActivity" android:name=".MainActivity"

View file

@ -4,8 +4,11 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
tools:context=".MainActivity"> tools:context=".MainActivity">
<ProgressBar android:indeterminate="true" android:layout_width="40dp"
android:layout_height="40dp" android:layout_centerInParent="true" /> <LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"></LinearLayout>
<WebView <WebView
android:id="@+id/webview" android:id="@+id/webview"