Alexandru Reznic

Results 13 comments of Alexandru Reznic

Custom file name and custom log folder ``` kotlin val file = File(Environment.getExternalStorageDirectory(), "log") if (!file.exists()) { file.mkdir() } Logger.addLogAdapter(object : DiskLogAdapter(CsvFormatStrategy.newBuilder().tag("tag") .logStrategy(DiskLogStrategy(DiskLogHandler(file.absolutePath, BuildConfig.APPLICATION_ID, 500 * 1024))) .build()) { override...

на эмуляторе запускал карты

My test with replace Room DB instance with inMemoryDatabaseBuilder ``` java @KoinReflectAPI fun test() = module { single { Room .inMemoryDatabaseBuilder(get(), AppDatabase::class.java) .fallbackToDestructiveMigration() .build() } single { AppDataRepositoryImpl( scope =...

With ProGuard 7.1.0-beta1 the same error

This is from JDK I changed to corretto-1.8.0_282 and evething works fine With Oracle 1.8.0_261 works With Oracle 1.8.0_191 doesn't work

solution ``` val viewModel: CheckUpViewModel = koinViewModel( viewModelStoreOwner = LocalContext.current as ComponentActivity ) ```

видимо нужно свой sample/src/google-services.json вставить