Skip to content

Commit

Permalink
gradle update
Browse files Browse the repository at this point in the history
  • Loading branch information
Praharsh Jain committed Dec 6, 2021
1 parent f41432a commit 3ffb870
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 30
compileSdkVersion 31
buildToolsVersion '30.0.3'

defaultConfig {
applicationId "com.praharsh.vudit"
minSdkVersion 17
targetSdkVersion 30
targetSdkVersion 31
versionCode 1
versionName "1.0"
}
Expand All @@ -23,8 +23,8 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'com.google.android.material:material:1.4.0-rc01'
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.6.0-alpha01'
implementation 'com.github.bumptech.glide:glide:4.10.0'
implementation 'com.github.piasy:BigImageViewer:1.6.2'
implementation 'com.github.piasy:ProgressPieIndicator:1.6.2'
Expand Down
8 changes: 8 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<activity
android:name=".FileViewer"
android:alwaysRetainTaskState="true"
android:exported="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="Vudit">
Expand Down Expand Up @@ -131,13 +132,15 @@
<activity
android:name=".WebViewBaseActivity"
android:alwaysRetainTaskState="true"
android:exported="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="WebView"
android:theme="@style/Theme.AppCompat.NoActionBar" />
<activity
android:name=".VideoPlayer"
android:alwaysRetainTaskState="true"
android:exported="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="VideoPlayer"
Expand All @@ -146,34 +149,39 @@
<activity
android:name=".ImageViewer"
android:alwaysRetainTaskState="true"
android:exported="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="ImageViewer"
android:theme="@style/Theme.AppCompat.NoActionBar" />
<activity
android:name=".TextViewer"
android:alwaysRetainTaskState="true"
android:exported="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="TextViewer"
android:theme="@style/Theme.AppCompat.NoActionBar" />
<activity
android:name=".DOCViewer"
android:alwaysRetainTaskState="true"
android:exported="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="DOCViewer"
android:theme="@style/Theme.AppCompat.NoActionBar" />
<activity
android:name=".HTMLViewer"
android:alwaysRetainTaskState="true"
android:exported="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="HTMLViewer"
android:theme="@style/Theme.AppCompat.NoActionBar" />
<activity
android:name=".SQLiteViewer"
android:alwaysRetainTaskState="true"
android:exported="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="SQLiteViewer"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'com.android.tools.build:gradle:4.2.2'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down

0 comments on commit 3ffb870

Please sign in to comment.