Skip to content

Commit

Permalink
Development commit
Browse files Browse the repository at this point in the history
- Upgraded gradle plugin to 8.2
- Updated all internal dependencies.
  • Loading branch information
BharathVishal committed Jan 1, 2024
1 parent be8ef54 commit e5ca5fc
Show file tree
Hide file tree
Showing 21 changed files with 44 additions and 42 deletions.
17 changes: 5 additions & 12 deletions .idea/deploymentTargetDropDown.xml

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

5 changes: 2 additions & 3 deletions .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.

10 changes: 10 additions & 0 deletions .idea/migrations.xml

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

16 changes: 8 additions & 8 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 34
versionCode 91
versionName "3.7"
versionCode 94
versionName "3.8"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
Expand Down Expand Up @@ -37,7 +37,7 @@ android {
jvmTarget = "17"
}
composeOptions {
kotlinCompilerExtensionVersion "1.5.4"
kotlinCompilerExtensionVersion "1.5.7"
}
packagingOptions {
jniLibs {
Expand All @@ -55,7 +55,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.2"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'com.google.android.material:material:1.11.0-beta01'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
implementation 'com.github.bumptech.glide:glide:4.16.0'
Expand All @@ -64,14 +64,14 @@ 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-alpha10'
implementation "androidx.compose.material3:material3-window-size-class:1.2.0-alpha10"
implementation 'androidx.compose.material3:material3:1.2.0-beta01'
implementation "androidx.compose.material3:material3-window-size-class:1.2.0-beta01"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
implementation 'androidx.activity:activity-compose:1.8.0'
implementation 'androidx.activity:activity-compose:1.8.2'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.5.4"
implementation 'androidx.core:core-splashscreen:1.0.1'
debugImplementation 'androidx.compose.ui:ui-tooling:1.5.4'
implementation 'androidx.compose.material:material-icons-extended:1.6.0-alpha08'
implementation 'androidx.compose.material:material-icons-extended:1.6.0-beta03'
implementation "androidx.compose.ui:ui-tooling-preview:1.5.4"
implementation "com.google.accompanist:accompanist-systemuicontroller:0.28.0"
implementation("io.coil-kt:coil-compose:2.2.2")
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2018-2023 Bharath Vishal G.
Copyright 2018-2024 Bharath Vishal G.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2018-2023 Bharath Vishal G.
* Copyright 2018-2024 Bharath Vishal G.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2018-2023 Bharath Vishal G.
* Copyright 2018-2024 Bharath Vishal G.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -213,7 +213,7 @@ class MainActivityCompose : AppCompatActivity(), CoroutineScope by MainScope() {

@Composable
fun TextLicenseHeader() {
val text1 = "© 2023. "
val text1 = "© 2024. "
val text2 = "Open Source Software"
val text3 = " licensed with Apache-2.0 license."
val annotatedString = buildAnnotatedString {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2018-2023 Bharath Vishal G.
* Copyright 2018-2024 Bharath Vishal G.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2018-2023 Bharath Vishal G.
* Copyright 2018-2024 Bharath Vishal G.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2018-2023 Bharath Vishal G.
* Copyright 2018-2024 Bharath Vishal G.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2018-2023 Bharath Vishal G.
* Copyright 2018-2024 Bharath Vishal G.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2018-2023 Bharath Vishal G.
* Copyright 2018-2024 Bharath Vishal G.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2018-2023 Bharath Vishal G.
* Copyright 2018-2024 Bharath Vishal G.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2018-2023 Bharath Vishal G.
* Copyright 2018-2024 Bharath Vishal G.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2018-2023 Bharath Vishal G.
* Copyright 2018-2024 Bharath Vishal G.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2018-2023 Bharath Vishal G.
Copyright 2018-2024 Bharath Vishal G.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/card_view_layout.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2018-2023 Bharath Vishal G.
Copyright 2018-2024 Bharath Vishal G.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<string name="No_Apps">No apps</string>

<string name="about_main">
© 2023. <a href="https://github.com/BharathVishal/App-Manager-Android"> Open Source Software </a> licensed with Apache-2.0 license.
© 2024. <a href="https://github.com/BharathVishal/App-Manager-Android"> Open Source Software </a> licensed with Apache-2.0 license.
</string>


Expand Down
4 changes: 2 additions & 2 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.9.20'
ext.kotlin_version = '1.9.21'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.3'
classpath 'com.android.tools.build:gradle:8.2.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-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit e5ca5fc

Please sign in to comment.