Skip to content

Commit 474c198

Browse files
committed
update deps & allow http espial servers
1 parent 10dfa86 commit 474c198

File tree

11 files changed

+62
-50
lines changed

11 files changed

+62
-50
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deploymentTargetDropDown.xml

Lines changed: 5 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/migrations.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ plugins {
44
}
55

66
android {
7-
compileSdk 33
7+
compileSdk 34
88

99
defaultConfig {
1010
applicationId "com.espial.espialshare"
1111
minSdk 27
12-
targetSdk 33
12+
targetSdk 34
1313
versionCode 1
14-
versionName "0.0.5"
14+
versionName '0.0.6'
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}
@@ -34,14 +34,14 @@ android {
3434

3535
dependencies {
3636

37-
implementation 'androidx.core:core-ktx:1.9.0'
38-
implementation 'androidx.appcompat:appcompat:1.5.1'
39-
implementation 'com.google.android.material:material:1.6.1'
40-
implementation 'androidx.preference:preference-ktx:1.2.0'
37+
implementation 'androidx.core:core-ktx:1.12.0'
38+
implementation 'androidx.appcompat:appcompat:1.6.1'
39+
implementation 'com.google.android.material:material:1.10.0'
40+
implementation 'androidx.preference:preference-ktx:1.2.1'
4141
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4242
implementation 'com.google.android.gms:play-services-cronet:18.0.1'
4343

44-
def lifecycle_version = "2.5.1"
44+
def lifecycle_version = '2.6.2'
4545
//noinspection KtxExtensionAvailable
4646
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
4747
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
android:label="@string/app_name"
1111
android:roundIcon="@drawable/es_logo"
1212
android:supportsRtl="true"
13-
android:theme="@style/Theme.EspialShare">
13+
android:theme="@style/Theme.EspialShare"
14+
android:usesCleartextTraffic="true">
1415
<activity
1516
android:name=".AddActivity"
1617
android:exported="true"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:7.3.0'
8+
classpath 'com.android.tools.build:gradle:8.2.0'
99
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10'
1010

1111
// NOTE: Do not place your application dependencies here; they belong

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ android.useAndroidX=true
1919
android.enableJetifier=true
2020
# Kotlin code style for this project: "official" or "obsolete":
2121
kotlin.code.style=official
22+
android.nonTransitiveRClass=false
23+
android.nonFinalResIds=false
2224
#org.gradle.warning.mode=all

0 commit comments

Comments
 (0)