Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
levinli303 committed May 11, 2022
1 parent a49ad84 commit 539020c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions Celestia/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'space.celestia.celestia'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions Celestia/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
~ of the License, or (at your option) any later version.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="space.celestia.celestia">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
1 change: 1 addition & 0 deletions LinkPreview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}
namespace 'space.celestia.ui.linkpreview'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions LinkPreview/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
~ of the License, or (at your option) any later version.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="space.celestia.ui.linkpreview">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
7 changes: 4 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ android {
executable = '/bin/sh'
args = ["convert_po.sh"]
}
namespace 'space.celestia.mobilecelestia'

copyGeneralData.mustRunAfter copyLocalizedFiles
convertPO.mustRunAfter copyGeneralData
Expand Down Expand Up @@ -108,7 +109,7 @@ dependencies {

implementation "net.lingala.zip4j:zip4j:2.10.0"

implementation 'androidx.webkit:webkit:1.4.0'
implementation "androidx.webkit:webkit:1.4.0"

implementation project(path: ':LinkPreview')
implementation project(path: ':Celestia')
Expand All @@ -117,8 +118,8 @@ dependencies {
implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"

implementation "com.google.dagger:hilt-android:2.38.1"
kapt 'com.google.dagger:hilt-compiler:2.38.1'
implementation "com.google.dagger:hilt-android:$hilt_version"
kapt "com.google.dagger:hilt-compiler:$hilt_version"

testImplementation "junit:junit:4.13.2"
androidTestImplementation "androidx.test.ext:junit:1.1.3"
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="space.celestia.mobilecelestia"
android:installLocation="auto"
android:versionCode="267"
android:versionCode="268"
android:versionName="1.5.10">

<uses-feature android:glEsVersion="0x00020000" android:required="true" />
Expand Down
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@ buildscript {
ext.material_version = '1.6.0'
ext.glide_version = '4.13.2'
ext.kotlinx_coroutines_version = '1.6.1'
ext.hilt_version = '2.40.1'

repositories {
google()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.38.1'
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip

0 comments on commit 539020c

Please sign in to comment.