Skip to content

Commit

Permalink
Development commit
Browse files Browse the repository at this point in the history
- Upgraded gradle plugin
- Updated all internal libraries.
  • Loading branch information
BharathVishal committed Sep 9, 2023
1 parent f9e096d commit a75e0e7
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .idea/gradle.xml

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

2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

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

2 changes: 1 addition & 1 deletion .idea/misc.xml

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

28 changes: 14 additions & 14 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 34
compileSdk 34
defaultConfig {
applicationId "com.bharathvishal.appmanager"
vectorDrawables.useSupportLibrary = true
minSdkVersion 23
targetSdkVersion 34
versionCode 86
versionName "3.5"
versionCode 89
versionName "3.6"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
Expand All @@ -28,7 +28,7 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildToolsVersion '33.0.0'
buildToolsVersion'34.0.0'
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
Expand All @@ -38,7 +38,7 @@ android {
jvmTarget = "17"
}
composeOptions {
kotlinCompilerExtensionVersion "1.4.7"
kotlinCompilerExtensionVersion "1.5.1"
}
packagingOptions {
jniLibs {
Expand All @@ -54,9 +54,9 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'com.google.android.material:material:1.10.0-alpha04'
implementation 'com.google.android.material:material:1.11.0-alpha02'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
implementation 'com.github.bumptech.glide:glide:4.15.1'
Expand All @@ -65,15 +65,15 @@ dependencies {
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

implementation 'androidx.compose.material3:material3:1.2.0-alpha03'
implementation "androidx.compose.material3:material3-window-size-class:1.2.0-alpha03"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
implementation 'androidx.compose.material3:material3:1.2.0-alpha07'
implementation "androidx.compose.material3:material3-window-size-class:1.2.0-alpha07"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
implementation 'androidx.activity:activity-compose:1.7.2'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.4.3"
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.5.1"
implementation 'androidx.core:core-splashscreen:1.0.1'
debugImplementation 'androidx.compose.ui:ui-tooling:1.4.3'
implementation 'androidx.compose.material:material-icons-extended:1.6.0-alpha01'
implementation "androidx.compose.ui:ui-tooling-preview:1.4.3"
debugImplementation 'androidx.compose.ui:ui-tooling:1.5.1'
implementation 'androidx.compose.material:material-icons-extended:1.6.0-alpha05'
implementation "androidx.compose.ui:ui-tooling-preview:1.5.1"
implementation "com.google.accompanist:accompanist-systemuicontroller:0.28.0"
implementation("io.coil-kt:coil-compose:2.2.2")
}
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.8.21'
ext.kotlin_version = '1.9.0'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath 'com.android.tools.build:gradle:8.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand All @@ -23,6 +23,6 @@ allprojects {
}
}

task clean(type: Delete) {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}

0 comments on commit a75e0e7

Please sign in to comment.