SrSouza
04/07/2023, 2:10 PMMichael Paus
04/07/2023, 3:34 PMSebastian Kürten
04/08/2023, 10:30 AMNuru Nabiyev
04/08/2023, 10:13 PMmohamed rejeb
04/10/2023, 9:32 AMBeta Tech
04/10/2023, 1:35 PMBeta Tech
04/10/2023, 1:36 PMRyan Smith
04/10/2023, 11:25 PMrunReleaseDistributable
Gradle task, but everything seems to work with non-release. I have a suspicion there's some missing piece of Proguard configuration I need in order to keep the right parts of kotlinx-coroutines-swing
, but I'm not sure what it is. Has anyone run in to this before?Shushant Tiwari
04/11/2023, 4:56 AMMichael Paus
04/11/2023, 6:26 PMKirill Grouchnikov
04/11/2023, 8:33 PMDesmond van der Meer
04/12/2023, 10:16 AMFedor Ryzhenkov
04/12/2023, 12:09 PMSrSouza
04/12/2023, 2:32 PMNikolay Rykunov
04/13/2023, 8:07 AMMichael Paus
04/13/2023, 3:29 PMpackageReleaseDmg
was several megabytes larger than the one which I just created via a GitHub action on a GitHub hosted runner. I used the same repository and configuration on both sides. Even the Java build version (17.0.6) was identical but there still was this size difference. After a long search it turned out that I actually did not use the Java version which I had installed but instead used the one with the same version number that JetBrains IntelliJ had installed in my local Library folder. The mac tool call /usr/libexec/java_home -version 17
, which was used to set JAVA_HOME, reported this version instead of the one I had installed.
So far so good. Technically they both work but there is still this size difference. It finally turned out that JetBrains has added a more than 8MB large fonts folder in jbr-17.0.6/Contents/Home/lib/fonts
which does not exist in regular Java distributions and this folder gets packaged into every installer that you create with this Java version making it much larger than necessary. So, watch out when you are creating installers and especially if you are putting a lot of effort into creating as small as possible installers.Lubos
04/13/2023, 7:38 PMrkeazor
04/13/2023, 11:20 PMDragos Rachieru
04/14/2023, 1:00 PMZeeshan Syed
04/14/2023, 1:46 PMIliyan Germanov
04/14/2023, 4:08 PMSqlDriver
that is persistent and works on Desktop (Linux, Windows, MacOS)? Here's the Github repo. Best I can do is in-memory one:
import app.cash.sqldelight.db.SqlDriver
import app.cash.sqldelight.driver.jdbc.sqlite.JdbcSqliteDriver
import ivy.Database
actual class SQLDelightDriverFactory {
actual fun createDriver(): SqlDriver {
val driver: SqlDriver = JdbcSqliteDriver(JdbcSqliteDriver.IN_MEMORY)
Database.Schema.create(driver)
return driver
}
}
Pedro Pereira
04/15/2023, 2:33 AMAdam Brown
04/15/2023, 5:35 PMMatt Groth
04/15/2023, 9:07 PMrun
gradle desk for my Desktop app and not seeing any standard output.Sebastian Kürten
04/16/2023, 8:51 AMCLOVIS
04/16/2023, 6:13 PMMethod beginSection in android.os.Trace not mocked. See <http://g.co/androidstudio/not-mocked> for details.java.lang.RuntimeException: Method beginSection in android.os.Trace not mocked. See <http://g.co/androidstudio/not-mocked> for details.
The link is broken. It happens when executing the JVM unit tests.Tim McCormack
04/17/2023, 2:00 AMPHondogo
04/17/2023, 10:22 AMMatthiasMeger
04/17/2023, 12:03 PMMatthiasMeger
04/17/2023, 1:36 PM