Skip to content

Commit

Permalink
Gradle commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BharathVishal committed Oct 4, 2022
1 parent b175ac0 commit 80e9718
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 11 deletions.
6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 13 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
vectorDrawables.useSupportLibrary = true
minSdkVersion 23
targetSdkVersion 33
versionCode 69
versionName "2.6"
versionCode 71
versionName "2.7"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

}
Expand Down Expand Up @@ -43,8 +43,14 @@ android {
kotlinCompilerExtensionVersion "1.3.0"
}
packagingOptions {
excludes += '/META-INF/{AL2.0,LGPL2.1}'
jniLibs {
excludes += ['/META-INF/{AL2.0,LGPL2.1}']
}
resources {
excludes += ['/META-INF/{AL2.0,LGPL2.1}']
}
}
namespace 'com.bharathvishal.appmanager'
}

dependencies {
Expand All @@ -61,14 +67,14 @@ dependencies {
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

implementation 'androidx.compose.material3:material3:1.0.0-beta02'
implementation "androidx.compose.material3:material3-window-size-class:1.0.0-beta02"
implementation 'androidx.compose.material3:material3:1.0.0-beta03'
implementation "androidx.compose.material3:material3-window-size-class:1.0.0-beta03"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
implementation 'androidx.activity:activity-compose:1.5.1'
implementation 'androidx.activity:activity-compose:1.6.0'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.2.1"
implementation 'androidx.core:core-splashscreen:1.0.0'
debugImplementation 'androidx.compose.ui:ui-tooling:1.2.1'
implementation 'androidx.compose.material:material-icons-extended:1.3.0-beta02'
implementation 'androidx.compose.material:material-icons-extended:1.3.0-beta03'
implementation "androidx.compose.ui:ui-tooling-preview:1.2.1"
implementation "com.google.accompanist:accompanist-systemuicontroller:0.26.1-alpha"
implementation("io.coil-kt:coil-compose:2.0.0-rc01")
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.bharathvishal.appmanager">
xmlns:tools="http://schemas.android.com/tools">

<uses-permission
android:name="android.permission.QUERY_ALL_PACKAGES"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Feb 05 13:24:30 IST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 80e9718

Please sign in to comment.