Updated dependencies and target sdk
This commit is contained in:
parent
d6b8ab936d
commit
8418977ccf
3 changed files with 10 additions and 6 deletions
|
@ -4,12 +4,12 @@ plugins {
|
|||
|
||||
android {
|
||||
namespace 'dev.vencord.vendroid'
|
||||
compileSdk 33
|
||||
compileSdk 34
|
||||
|
||||
defaultConfig {
|
||||
applicationId "dev.vencord.vendroid"
|
||||
minSdk 21
|
||||
targetSdk 33
|
||||
targetSdk 34
|
||||
versionCode 3
|
||||
versionName "1.0"
|
||||
}
|
||||
|
@ -30,6 +30,7 @@ android {
|
|||
}
|
||||
|
||||
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'
|
||||
}
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
android:allowBackup="true"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/LoadingTheme"
|
||||
tools:targetApi="31"
|
||||
tools:targetApi="34"
|
||||
>
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
|
|
|
@ -4,8 +4,11 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
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
|
||||
android:id="@+id/webview"
|
||||
|
|
Loading…
Reference in a new issue