Lan s
10/19/2022, 2:08 AMFabian Vorholt
10/19/2022, 6:38 AMYingding Wang
10/19/2022, 5:59 PMyogaboy
10/20/2022, 6:50 PMYingding Wang
10/22/2022, 3:32 PMreactormonk
10/28/2022, 2:28 PM`CommandLineWrapper` is ill-suited for launching apps on Java 9+.
If the run configuration uses "classpath file", please change it to "@argfile".
Otherwise, please contact support.
When trying to launch a repl in my app
scope - I can launch it outside, but that's kinda useless.Asad Mukhtar
10/30/2022, 7:10 PMfun Activity.setSystemPaddingForAppContent(view: View) {
WindowCompat.setDecorFitsSystemWindows(window, false)
ViewCompat.setOnApplyWindowInsetsListener(view) { view, windowInsets ->
val insets = windowInsets.getInsets(WindowInsetsCompat.Type.systemGestures())
// Apply the insets as padding to the view. Here we're setting all of the
// dimensions, but apply as appropriate to your layout. You could also
// update the views margin if more appropriate.
view.updatePadding(insets.left, 0, insets.right, insets.bottom)
// Return CONSUMED if we don't want the window insets to keep being passed
// down to descendant views.
WindowInsetsCompat.CONSUMED
}
}
But the problem is that I have a simple activity due to the above function ScrollView, NestedScrollView not scroll even the content is scrollable.Kayacan Kaya
11/10/2022, 4:10 PMbuild.gradle
is as follows:
build.gradle
{
implementation Deps.libDependency
implementation Deps.otherLibDependency
}
where it gets the dependencies from the kotlin object called Deps
. My Deps
and Versions
objects are as follows:
Dependencies.kt
object Versions {
const val someDeps = "1.1.1"
const val someOtherDeps = OtherDeps.VERSION
}
object Deps {
const val libDependency = "com.example.tools:${Versions.someDeps}"
const val otherLibDependency = "com.another.tools:${Versions.someOtherDeps}"
}
as seen, my Versions
object is making use of another object called OtherDeps
for getting a dependency version for another library from another object. My OtherDeps
object is as follows:
OtherDeps.kt
object OtherDeps{
const val VERSION = "1.2.1"
}
The problem: Whenever I change OtherDeps.VERSION
and gradle sync the dependencies, it does not update and fetch the new otherLibDependency
version. I tried deleting all the caches, nothing worked. The only way that I was able to fetch the new OtherDeps.VERSION
was to make a change in Dependencies.kt
file (could be anything like adding dummy varible etc). After that, gradle sync could fetch the new version of otherLibDependency
. Is there any solution to this problem/bug?ayodele
11/14/2022, 5:07 PMBonsible Hou
11/18/2022, 1:41 PMWARNING:/Users/alger/.jenkins/object_android_apk_pack_gradle7/VeSync_RN/android/app/build/intermediates/transforms/sensorsAnalyticsAutoTrack/check/releaseStaging/57.jar: R8: Expected stack map table for method with non-linear control flow. In later version of R8, the method may be assumed not reachable.
fengdai
11/22/2022, 8:26 AMElka
12/02/2022, 6:23 AMKotlinLeaner
12/07/2022, 12:57 PMrecompose count
in @Preview
? I only know about to see in recompose count
in device with the help of layout inspector
.Pablichjenkov
12/07/2022, 5:57 PMAdel Ayman
12/09/2022, 4:10 PMenighma
12/09/2022, 10:07 PMMarkRS
12/14/2022, 2:18 PMZea
12/22/2022, 1:52 PMCicero
12/22/2022, 5:26 PMchanjungskim
12/23/2022, 3:18 AMchanjungskim
12/23/2022, 3:18 AMchanjungskim
12/23/2022, 3:17 AMtheapache64
12/27/2022, 7:19 AMYingding Wang
12/30/2022, 12:11 PMYingding Wang
01/02/2023, 12:06 PMIconButton
in androidx.wear.compose.material
, just noticed that I shall not use androidx.compose.material
with compose wear. An Icon in androidx.wear.compose.material
can not be attached with a click event. As I wrapped Icon in a Button, it attaches a shadow. How can I get ride of this shadow?Cicero
01/05/2023, 8:27 PMKotlinLeaner
01/13/2023, 9:52 AMAlexandru Hadăr
01/14/2023, 4:34 PMAndroid Studio Flamingo | 2022.2.1 Canary 11
Build #AI-222.4459.24.2221.9445173, built on December 30, 2022
Runtime version: 17.0.4.1+0-17.0.4.1b469.62-9127311 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
macOS 13.0.1
GC: G1 Young Generation, G1 Old Generation
Memory: 2048M
Cores: 8
Metal Rendering is ON
Registry:
external.system.auto.import.disabled=true
debugger.new.tool.window.layout=true
ide.text.editor.with.preview.show.floating.toolbar=false
ide.experimental.ui=true
ide.balloon.shadow.size=0
gradle.version.catalogs.dynamic.support=true
Non-Bundled Plugins:
com.intellij.marketplace (222.4459.28)
Yingding Wang
01/15/2023, 7:34 PMMBegemot
01/17/2023, 10:51 AM