mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-19 21:13:12 -07:00
Update Android Dependencies
This commit is contained in:
parent
367489e230
commit
e6af02a35c
5 changed files with 13 additions and 22 deletions
|
@ -94,19 +94,19 @@ androidExtensions {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||||
implementation 'androidx.appcompat:appcompat:1.1.0'
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||||||
implementation 'androidx.core:core-ktx:1.2.0'
|
implementation 'androidx.core:core-ktx:1.3.2'
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
||||||
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
||||||
implementation 'androidx.preference:preference:1.1.0'
|
implementation 'androidx.preference:preference:1.1.1'
|
||||||
implementation 'com.google.android.material:material:1.1.0-beta02'
|
implementation 'com.google.android.material:material:1.2.1'
|
||||||
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
||||||
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
|
||||||
implementation 'androidx.lifecycle:lifecycle-reactivestreams:2.2.0'
|
implementation 'androidx.lifecycle:lifecycle-reactivestreams:2.2.0'
|
||||||
implementation "io.reactivex.rxjava2:rxjava:2.2.12"
|
implementation "io.reactivex.rxjava2:rxjava:2.2.20"
|
||||||
implementation "io.reactivex.rxjava2:rxkotlin:2.4.0"
|
implementation "io.reactivex.rxjava2:rxkotlin:2.4.0"
|
||||||
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
||||||
def room_version = "2.2.4"
|
def room_version = "2.2.6"
|
||||||
implementation "androidx.room:room-runtime:$room_version"
|
implementation "androidx.room:room-runtime:$room_version"
|
||||||
kapt "androidx.room:room-compiler:$room_version"
|
kapt "androidx.room:room-compiler:$room_version"
|
||||||
implementation "androidx.room:room-ktx:$room_version"
|
implementation "androidx.room:room-ktx:$room_version"
|
||||||
|
|
|
@ -44,7 +44,6 @@ class StreamActivity : AppCompatActivity(), View.OnSystemUiVisibilityChangeListe
|
||||||
|
|
||||||
private lateinit var viewModel: StreamViewModel
|
private lateinit var viewModel: StreamViewModel
|
||||||
private val uiVisibilityHandler = Handler()
|
private val uiVisibilityHandler = Handler()
|
||||||
private val streamView: View get() = surfaceView
|
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?)
|
override fun onCreate(savedInstanceState: Bundle?)
|
||||||
{
|
{
|
||||||
|
@ -88,13 +87,7 @@ class StreamActivity : AppCompatActivity(), View.OnSystemUiVisibilityChangeListe
|
||||||
showOverlay()
|
showOverlay()
|
||||||
}
|
}
|
||||||
|
|
||||||
displayModeToggle.addOnButtonCheckedListener { _, checkedId, _ ->
|
displayModeToggle.addOnButtonCheckedListener { _, _, _ ->
|
||||||
// following 'if' is a workaround until selectionRequired for MaterialButtonToggleGroup
|
|
||||||
// comes out of alpha.
|
|
||||||
// See https://stackoverflow.com/questions/56164004/required-single-selection-on-materialbuttontogglegroup
|
|
||||||
if (displayModeToggle.checkedButtonId == -1)
|
|
||||||
displayModeToggle.check(checkedId)
|
|
||||||
|
|
||||||
adjustStreamViewAspect()
|
adjustStreamViewAspect()
|
||||||
showOverlay()
|
showOverlay()
|
||||||
}
|
}
|
||||||
|
@ -102,9 +95,6 @@ class StreamActivity : AppCompatActivity(), View.OnSystemUiVisibilityChangeListe
|
||||||
//viewModel.session.attachToTextureView(textureView)
|
//viewModel.session.attachToTextureView(textureView)
|
||||||
viewModel.session.attachToSurfaceView(surfaceView)
|
viewModel.session.attachToSurfaceView(surfaceView)
|
||||||
viewModel.session.state.observe(this, Observer { this.stateChanged(it) })
|
viewModel.session.state.observe(this, Observer { this.stateChanged(it) })
|
||||||
/*streamView.addOnLayoutChangeListener { _, _, _, _, _, _, _, _, _ ->
|
|
||||||
adjustStreamViewAspect()
|
|
||||||
}*/
|
|
||||||
adjustStreamViewAspect()
|
adjustStreamViewAspect()
|
||||||
|
|
||||||
if(Preferences(this).rumbleEnabled)
|
if(Preferences(this).rumbleEnabled)
|
||||||
|
|
|
@ -83,6 +83,7 @@
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:singleSelection="true"
|
app:singleSelection="true"
|
||||||
|
app:selectionRequired="true"
|
||||||
app:checkedButton="@id/display_mode_normal_button">
|
app:checkedButton="@id/display_mode_normal_button">
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
<com.google.android.material.button.MaterialButton
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.3.61'
|
ext.kotlin_version = '1.4.21'
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
|
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.5.2'
|
classpath 'com.android.tools.build:gradle:4.1.1'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#Wed Mar 11 18:48:31 CET 2020
|
#Fri Jan 15 11:37:05 CET 2021
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue