Update core and dependencies
This commit is contained in:
parent
75e004e4c7
commit
95f006682c
|
|
@ -44,9 +44,9 @@ val coreVerName by extra(
|
||||||
.split('"')[1]
|
.split('"')[1]
|
||||||
)
|
)
|
||||||
val androidMinSdkVersion by extra(28)
|
val androidMinSdkVersion by extra(28)
|
||||||
val androidTargetSdkVersion by extra(32)
|
val androidTargetSdkVersion by extra(33)
|
||||||
val androidCompileSdkVersion by extra(32)
|
val androidCompileSdkVersion by extra(33)
|
||||||
val androidCompileNdkVersion by extra("24.0.8215888")
|
val androidCompileNdkVersion by extra("25.0.8775105")
|
||||||
val androidBuildToolsVersion by extra("32.0.0")
|
val androidBuildToolsVersion by extra("32.0.0")
|
||||||
val androidSourceCompatibility by extra(JavaVersion.VERSION_11)
|
val androidSourceCompatibility by extra(JavaVersion.VERSION_11)
|
||||||
val androidTargetCompatibility by extra(JavaVersion.VERSION_11)
|
val androidTargetCompatibility by extra(JavaVersion.VERSION_11)
|
||||||
|
|
|
||||||
2
core
2
core
|
|
@ -1 +1 @@
|
||||||
Subproject commit 6ced1460180d61c647d2ae91e719e8598ca71b94
|
Subproject commit 205138f6380bc516bba8473af385b9d734689bec
|
||||||
|
|
@ -5,4 +5,4 @@ android.nonTransitiveRClass=true
|
||||||
android.enableR8.fullMode=true
|
android.enableR8.fullMode=true
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
|
|
||||||
agpVersion=7.2.1
|
agpVersion=7.2.2
|
||||||
|
|
|
||||||
|
|
@ -80,28 +80,28 @@ dependencies {
|
||||||
implementation(projects.share.android)
|
implementation(projects.share.android)
|
||||||
implementation(projects.share.java)
|
implementation(projects.share.java)
|
||||||
|
|
||||||
val roomVersion = "2.4.2"
|
val roomVersion = "2.4.3"
|
||||||
val composeDestinationsVersion = "1.6.13-beta"
|
val composeDestinationsVersion = "1.7.17-beta"
|
||||||
annotationProcessor("androidx.room:room-compiler:$roomVersion")
|
annotationProcessor("androidx.room:room-compiler:$roomVersion")
|
||||||
compileOnly("dev.rikka.hidden:stub:2.3.1")
|
compileOnly("dev.rikka.hidden:stub:2.3.1")
|
||||||
implementation("dev.rikka.hidden:compat:2.3.1")
|
implementation("dev.rikka.hidden:compat:2.3.1")
|
||||||
implementation("androidx.core:core-ktx:1.8.0")
|
implementation("androidx.core:core-ktx:1.8.0")
|
||||||
implementation("androidx.activity:activity-compose:1.6.0-alpha05")
|
implementation("androidx.activity:activity-compose:1.6.0-rc01")
|
||||||
implementation("androidx.compose.material:material-icons-extended:1.3.0-alpha01")
|
implementation("androidx.compose.material:material-icons-extended:1.3.0-beta01")
|
||||||
implementation("androidx.compose.material3:material3:1.0.0-alpha14")
|
implementation("androidx.compose.material3:material3:1.0.0-beta01")
|
||||||
implementation("androidx.compose.ui:ui:1.3.0-alpha01")
|
implementation("androidx.compose.ui:ui:1.3.0-beta01")
|
||||||
implementation("androidx.compose.ui:ui-tooling:1.3.0-alpha01")
|
implementation("androidx.compose.ui:ui-tooling:1.3.0-beta01")
|
||||||
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.5.0")
|
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1")
|
||||||
implementation("androidx.navigation:navigation-compose:2.5.0")
|
implementation("androidx.navigation:navigation-compose:2.5.1")
|
||||||
implementation("androidx.preference:preference:1.2.0")
|
implementation("androidx.preference:preference:1.2.0")
|
||||||
implementation("androidx.room:room-ktx:$roomVersion")
|
implementation("androidx.room:room-ktx:$roomVersion")
|
||||||
implementation("androidx.room:room-runtime:$roomVersion")
|
implementation("androidx.room:room-runtime:$roomVersion")
|
||||||
implementation("com.google.accompanist:accompanist-drawablepainter:0.24.11-rc")
|
implementation("com.google.accompanist:accompanist-drawablepainter:0.26.2-beta")
|
||||||
implementation("com.google.accompanist:accompanist-navigation-animation:0.24.11-rc")
|
implementation("com.google.accompanist:accompanist-navigation-animation:0.26.2-beta")
|
||||||
implementation("com.google.accompanist:accompanist-pager:0.24.11-rc")
|
implementation("com.google.accompanist:accompanist-pager:0.26.2-beta")
|
||||||
implementation("com.google.accompanist:accompanist-swiperefresh:0.24.11-rc")
|
implementation("com.google.accompanist:accompanist-swiperefresh:0.26.2-beta")
|
||||||
implementation("com.google.android.material:material:1.6.1")
|
implementation("com.google.android.material:material:1.6.1")
|
||||||
implementation("com.google.code.gson:gson:2.9.0")
|
implementation("com.google.code.gson:gson:2.9.1")
|
||||||
implementation("dev.rikka.shizuku:api:12.1.0")
|
implementation("dev.rikka.shizuku:api:12.1.0")
|
||||||
implementation("dev.rikka.shizuku:provider:12.1.0")
|
implementation("dev.rikka.shizuku:provider:12.1.0")
|
||||||
implementation("io.github.raamcosta.compose-destinations:core:$composeDestinationsVersion")
|
implementation("io.github.raamcosta.compose-destinations:core:$composeDestinationsVersion")
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
package org.lsposed.lspatch.ui.component
|
package org.lsposed.lspatch.ui.component
|
||||||
|
|
||||||
import androidx.compose.material3.CenterAlignedTopAppBar
|
import androidx.compose.material3.CenterAlignedTopAppBar
|
||||||
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
|
|
@ -10,6 +11,7 @@ import androidx.compose.ui.tooling.preview.Preview
|
||||||
import androidx.compose.ui.tooling.preview.PreviewParameter
|
import androidx.compose.ui.tooling.preview.PreviewParameter
|
||||||
import org.lsposed.lspatch.ui.util.SampleStringProvider
|
import org.lsposed.lspatch.ui.util.SampleStringProvider
|
||||||
|
|
||||||
|
@OptIn(ExperimentalMaterial3Api::class)
|
||||||
@Preview
|
@Preview
|
||||||
@Composable
|
@Composable
|
||||||
fun CenterTopBar(@PreviewParameter(SampleStringProvider::class, 1) text: String) {
|
fun CenterTopBar(@PreviewParameter(SampleStringProvider::class, 1) text: String) {
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ import androidx.compose.ui.unit.dp
|
||||||
|
|
||||||
private const val TAG = "SearchBar"
|
private const val TAG = "SearchBar"
|
||||||
|
|
||||||
@OptIn(ExperimentalComposeUiApi::class)
|
@OptIn(ExperimentalComposeUiApi::class, ExperimentalMaterial3Api::class)
|
||||||
@Composable
|
@Composable
|
||||||
fun SearchAppBar(
|
fun SearchAppBar(
|
||||||
title: @Composable () -> Unit,
|
title: @Composable () -> Unit,
|
||||||
|
|
|
||||||
|
|
@ -144,6 +144,7 @@ fun NewPatchScreen(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@OptIn(ExperimentalMaterial3Api::class)
|
||||||
@Composable
|
@Composable
|
||||||
private fun ConfiguringTopBar(onBackClick: () -> Unit) {
|
private fun ConfiguringTopBar(onBackClick: () -> Unit) {
|
||||||
SmallTopAppBar(
|
SmallTopAppBar(
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,7 @@ fun SettingsScreen() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@OptIn(ExperimentalMaterial3Api::class)
|
||||||
@Composable
|
@Composable
|
||||||
private fun KeyStore() {
|
private fun KeyStore() {
|
||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
|
|
|
||||||
|
|
@ -60,5 +60,5 @@ dependencies {
|
||||||
implementation(projects.share.android)
|
implementation(projects.share.android)
|
||||||
implementation(projects.share.java)
|
implementation(projects.share.java)
|
||||||
|
|
||||||
implementation("com.google.code.gson:gson:2.9.0")
|
implementation("com.google.code.gson:gson:2.9.1")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include "ConfigBridge.h"
|
#include "config_bridge.h"
|
||||||
|
|
||||||
namespace lspd {
|
namespace lspd {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,5 +18,5 @@ dependencies {
|
||||||
|
|
||||||
implementation("commons-io:commons-io:2.11.0")
|
implementation("commons-io:commons-io:2.11.0")
|
||||||
implementation("com.beust:jcommander:1.82")
|
implementation("com.beust:jcommander:1.82")
|
||||||
implementation("com.google.code.gson:gson:2.9.0")
|
implementation("com.google.code.gson:gson:2.9.1")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue