Skip to content

Commit b2ddac3

Browse files
committed
Dev commit
- Upgraded gradle plugin to 8.2 - Updated all internal dependencies.
1 parent f73f494 commit b2ddac3

File tree

12 files changed

+28
-28
lines changed

12 files changed

+28
-28
lines changed

.DS_Store

-2 KB
Binary file not shown.

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
* Copyright 2023 Bharath Vishal G
3+
* Copyright 2023-2024 Bharath Vishal G
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -18,11 +18,11 @@
1818

1919
buildscript {
2020
ext {
21-
compose_version = '1.5.4'
21+
compose_version = '1.5.7'
2222
}
2323
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
2424
plugins {
25-
id 'com.android.application' version '8.1.1' apply false
26-
id 'com.android.library' version '8.1.1' apply false
27-
id 'org.jetbrains.kotlin.android' version '1.9.20' apply false
25+
id 'com.android.application' version '8.2.0' apply false
26+
id 'com.android.library' version '8.2.0' apply false
27+
id 'org.jetbrains.kotlin.android' version '1.9.21' apply false
2828
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Feb 15 10:28:23 IST 2023
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

textviewermodule/build.gradle

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
* Copyright 2023 Bharath Vishal G
3+
* Copyright 2023-2024 Bharath Vishal G
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -28,8 +28,8 @@ android {
2828
defaultConfig {
2929
minSdk 22
3030
targetSdk 34
31-
versionCode 12
32-
versionName "1.2.4"
31+
versionCode 15
32+
versionName "1.2.5"
3333

3434
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3535
consumerProguardFiles "consumer-rules.pro"
@@ -56,7 +56,7 @@ android {
5656
viewBinding true
5757
}
5858
composeOptions {
59-
kotlinCompilerExtensionVersion '1.5.4'
59+
kotlinCompilerExtensionVersion '1.5.7'
6060
}
6161
packagingOptions {
6262
resources {
@@ -71,21 +71,21 @@ dependencies {
7171
implementation 'androidx.cardview:cardview:1.0.0'
7272
implementation 'androidx.core:core-ktx:1.12.0'
7373
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
74-
implementation 'com.google.android.material:material:1.11.0-beta01'
74+
implementation 'com.google.android.material:material:1.11.0'
7575
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
7676
testImplementation 'junit:junit:4.13.2'
7777
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
7878
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
7979

80-
implementation 'androidx.compose.material3:material3:1.2.0-alpha10'
81-
implementation 'androidx.activity:activity-compose:1.8.0'
82-
debugImplementation "androidx.compose.ui:ui-test-manifest:1.6.0-alpha08"
83-
implementation 'androidx.compose.material3:material3:1.2.0-alpha10'
84-
implementation "androidx.compose.ui:ui:1.6.0-alpha08"
85-
implementation 'androidx.activity:activity-compose:1.8.0'
80+
implementation 'androidx.compose.material3:material3:1.2.0-beta01'
81+
implementation 'androidx.activity:activity-compose:1.8.2'
82+
debugImplementation "androidx.compose.ui:ui-test-manifest:1.6.0-beta03"
83+
implementation 'androidx.compose.material3:material3:1.2.0-beta01'
84+
implementation "androidx.compose.ui:ui:1.6.0-beta03"
85+
implementation 'androidx.activity:activity-compose:1.8.2'
8686
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.5.4"
87-
debugImplementation 'androidx.compose.ui:ui-tooling:1.6.0-alpha08'
88-
implementation "androidx.compose.ui:ui-tooling-preview:1.6.0-alpha08"
89-
implementation 'androidx.compose.material:material-icons-extended:1.6.0-alpha08'
87+
debugImplementation 'androidx.compose.ui:ui-tooling:1.6.0-beta03'
88+
implementation "androidx.compose.ui:ui-tooling-preview:1.6.0-beta03"
89+
implementation 'androidx.compose.material:material-icons-extended:1.6.0-beta03'
9090
implementation "com.google.accompanist:accompanist-systemuicontroller:0.28.0"
9191
}

textviewermodule/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?><!--
2-
Copyright 2023 Bharath Vishal G.
2+
Copyright 2023-2024 Bharath Vishal G.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

textviewermodule/src/main/java/com/bharathvishal/textfileviewer/Activities/ExampleActivityJava.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright 2023 Bharath Vishal G
3+
* Copyright 2023-2024 Bharath Vishal G
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

textviewermodule/src/main/java/com/bharathvishal/textfileviewer/Activities/ExampleActivityKotlinCompose.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright 2023 Bharath Vishal G
3+
* Copyright 2023-2024 Bharath Vishal G
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

textviewermodule/src/main/java/com/bharathvishal/textfileviewer/Activities/TextViewMainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright 2023 Bharath Vishal G
3+
* Copyright 2023-2024 Bharath Vishal G
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

textviewermodule/src/main/java/com/bharathvishal/textfileviewer/Classes/TextLineRepresentation.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright 2023 Bharath Vishal G
3+
* Copyright 2023-2024 Bharath Vishal G
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

textviewermodule/src/main/java/com/bharathvishal/textfileviewer/Constants/Constant.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright 2023 Bharath Vishal G
3+
* Copyright 2023-2024 Bharath Vishal G
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)