Junerver Hou
Junerver Hou
> @waitwalker > > 如果Android项目本身的`app`(而不是`flutter-module/.android/app`)中的build.gradle文件中没有配置`productFlavors`, 不需要在对应的 `flutter-module/.android/app` 中配置相同的`productFlavors` > > 如果你的项目是Android原生和Flutter混编,应该找Android开发的同事(或者看Android原生项目的源码),看一下`build.gradle`中的配置,保证对应的buildTypes配置和`flutter-module/.android/app/build.gradle`一致即可。 我保持了一致,并且在AS的Build Variants中也都选择成一致的,仍然出现了此问题,很困惑。 经过一些测试,我定位到应该是buildTypes的问题,我在项目中自定义了一些BuildTypes 比如: ``` buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } ceshi { initWith debug...
> > > > 可以设置的比如我想设置#DD3030,先把他展开成16进制FFFF FFFF FFDD 3030,在转化为十进制-2,281,424,然后就可以愉快的设置了config.setColumnTitleBackground(new BaseBackgroundFormat(-2281424)); > > > > > > > > > 试了下,好像不行。不知道我这边是不是有什么错误 > > > 我是 #2ebcab 按照你的方法 > > > table.getConfig().setColumnTitleBackground(new BaseBackgroundFormat(13536253));...
I think it's okay to design this way,`ReducerForActionType` is designed to quickly create a **sliceReducer** where you know exactly the type of state and action. The reducer parameter in `createThreadSafeStore`...
确实是这个问题,解决了,多谢多谢!
i have a same issue, debug log: Starting debug for 'Layout' [2018-05-23 12:28:22][STDERR: input.scriptfilter] Reading layout options from: ./Data/de.leanovate.alfred.layout/layouts.yaml [2018-05-23 12:28:26][STDERR: input.scriptfilter] Reading layout options from: ./Data/de.leanovate.alfred.layout/layouts.yaml [2018-05-23 12:28:27][ERROR: action.script]...
by the way, when I try to open redux-kotlin in IDEA, I get an error like this ``` FAILURE: Build failed with an exception. * What went wrong: org/jetbrains/kotlin/cli/common/PropertiesKt *...
> > I spent a few hours today figuring out how to set up the pre push hook task to a multi module project. A sample project would've been mightily...
In fact, every timeif you pass `deps` through `arrayOf`, a new array instance will be created, which will cause LaunchedEffect and DisposeEffect to execute blocks. If you just want to...