1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-18 21:12:24 +02:00

Version updates

This commit is contained in:
Allan Wang 2023-12-14 21:29:45 -08:00
parent f5b003298e
commit ff766fe9cc
No known key found for this signature in database
GPG Key ID: C93E3F9C679D7A56
6 changed files with 25 additions and 15 deletions

1
.gitignore vendored
View File

@ -31,5 +31,6 @@
.idea/**/libraries .idea/**/libraries
.idea/**/assetWizardSettings.xml .idea/**/assetWizardSettings.xml
.idea/**/caches .idea/**/caches
.idea/deploymentTargetDropDown.xml
.idea/modules.xml .idea/modules.xml
.idea/modules .idea/modules

10
.idea/migrations.xml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectMigrations">
<option name="MigrateToGradleLocalJavaHome">
<set>
<option value="$PROJECT_DIR$" />
</set>
</option>
</component>
</project>

View File

@ -11,12 +11,12 @@ plugins {
apply from: '../spotless.gradle' apply from: '../spotless.gradle'
android { android {
compileSdk 33 compileSdk 34
defaultConfig { defaultConfig {
applicationId "com.pitchedapps.frost" applicationId "com.pitchedapps.frost"
minSdk 26 minSdk 26
targetSdk 33 targetSdk 34
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
multiDexEnabled = true multiDexEnabled = true
@ -40,7 +40,7 @@ android {
composeOptions { composeOptions {
// https://developer.android.com/jetpack/androidx/releases/compose-compiler // https://developer.android.com/jetpack/androidx/releases/compose-compiler
kotlinCompilerExtensionVersion = "1.4.7" kotlinCompilerExtensionVersion = "1.5.6"
} }
buildTypes { buildTypes {
@ -140,10 +140,10 @@ project.configurations.configureEach {
dependencies { dependencies {
implementation "androidx.core:core-ktx:1.10.1" implementation "androidx.core:core-ktx:1.12.0"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1" implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"
implementation "androidx.appcompat:appcompat:1.6.1" implementation "androidx.appcompat:appcompat:1.6.1"
implementation "com.google.android.material:material:1.9.0" implementation "com.google.android.material:material:1.11.0"
// implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1" // implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1"
// implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1" // implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1"
@ -152,7 +152,7 @@ dependencies {
testImplementation "junit:junit:4.13.2" testImplementation "junit:junit:4.13.2"
testImplementation "com.google.truth:truth:1.1.3" testImplementation "com.google.truth:truth:1.1.3"
testImplementation "org.json:json:20220320" testImplementation "org.json:json:20230227"
androidTestImplementation "androidx.test.ext:junit:1.1.5" androidTestImplementation "androidx.test.ext:junit:1.1.5"
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1" androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"
@ -178,7 +178,7 @@ dependencies {
// https://maven.mozilla.org/maven2/org/mozilla/components/browser-engine-gecko/maven-metadata.xml // https://maven.mozilla.org/maven2/org/mozilla/components/browser-engine-gecko/maven-metadata.xml
// https://github.com/mozilla-mobile/reference-browser/blob/master/buildSrc/src/main/java/AndroidComponents.kt // https://github.com/mozilla-mobile/reference-browser/blob/master/buildSrc/src/main/java/AndroidComponents.kt
// https://nightly.maven.mozilla.org/maven2/org/mozilla/components/browser-engine-gecko/maven-metadata.xml // https://nightly.maven.mozilla.org/maven2/org/mozilla/components/browser-engine-gecko/maven-metadata.xml
def mozillaAndroidComponents = "116.0.20230617040331" def mozillaAndroidComponents = "122.0.20231214160125"
implementation "org.mozilla.components:lib-state:${mozillaAndroidComponents}" implementation "org.mozilla.components:lib-state:${mozillaAndroidComponents}"
// Kept for reference; not needed // Kept for reference; not needed
@ -188,16 +188,16 @@ dependencies {
def composeVersion = "1.4.3" def composeVersion = "1.4.3"
implementation("androidx.compose.ui:ui:${composeVersion}") implementation("androidx.compose.ui:ui:${composeVersion}")
implementation("androidx.activity:activity-compose:1.7.2") implementation("androidx.activity:activity-compose:1.8.2")
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1") implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2")
implementation("androidx.navigation:navigation-compose:2.6.0") implementation("androidx.navigation:navigation-compose:2.7.6")
// Tooling support (Previews, etc.) // Tooling support (Previews, etc.)
implementation("androidx.compose.ui:ui-tooling:${composeVersion}") implementation("androidx.compose.ui:ui-tooling:${composeVersion}")
// Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.) // Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.)
implementation("androidx.compose.foundation:foundation:${composeVersion}") implementation("androidx.compose.foundation:foundation:${composeVersion}")
// Material Design // Material Design
implementation("androidx.compose.material:material:${composeVersion}") implementation("androidx.compose.material:material:${composeVersion}")
implementation 'androidx.compose.material3:material3:1.2.0-alpha02' implementation 'androidx.compose.material3:material3:1.2.0-beta01'
// Material design icons // Material design icons
implementation("androidx.compose.material:material-icons-core:${composeVersion}") implementation("androidx.compose.material:material-icons-core:${composeVersion}")
implementation("androidx.compose.material:material-icons-extended:${composeVersion}") implementation("androidx.compose.material:material-icons-extended:${composeVersion}")

View File

@ -15,7 +15,6 @@
<application <application
android:name=".FrostApp" android:name=".FrostApp"
android:allowBackup="true" android:allowBackup="true"
android:extractNativeLibs="false"
android:fullBackupContent="@xml/frost_backup_rules" android:fullBackupContent="@xml/frost_backup_rules"
android:icon="@mipmap/ic_launcher_round" android:icon="@mipmap/ic_launcher_round"
android:label="@string/frost_name" android:label="@string/frost_name"

View File

@ -8,7 +8,7 @@ buildscript {
plugins { plugins {
// https://mvnrepository.com/artifact/com.android.application/com.android.application.gradle.plugin?repo=google // https://mvnrepository.com/artifact/com.android.application/com.android.application.gradle.plugin?repo=google
id 'com.android.application' version '8.1.0-beta04' apply false id 'com.android.application' version '8.2.0' apply false
id 'com.android.library' version '8.0.2' apply false id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
// https://mvnrepository.com/artifact/com.google.devtools.ksp/com.google.devtools.ksp.gradle.plugin // https://mvnrepository.com/artifact/com.google.devtools.ksp/com.google.devtools.ksp.gradle.plugin

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME