logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

react-native 版本升级

查看reactnative版本react-native -v通过升级版本遇到问题通过

Error creating bean with name com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration

开始学习分页时,使用pageHelper分页遇到问题使用版本1.2.2<!--mybatis pagerhelper分页--><dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper-spring-boot-starter</artifact

git_在某次提交上拉取新的分支

使用android studio方式Version Control->Log->找到对应的某次提交->右键->New Branch->输入新分支名称

#git
Expected URL scheme 'http' or 'https' but no colon was found

Caused by: java.lang.IllegalArgumentException: Expected URL scheme 'http' or 'https' but no colon was foundat okhttp3.HttpUrl$Builder.parse(HttpUrl.java:1333)at okhttp3.HttpUrl.get(H...

#android
javax/xml/bind/JAXBException

新AS版本打开旧项目报错“javax/xml/bind/JAXBException”解决办法:打开project structure选中SDK Location -》JDK location 选择环境变量中配的版本

java.lang.UnsatisfiedLinkError: dlopen failed: file offset for the library

java.lang.UnsatisfiedLinkError: dlopen failed: file offset for the library场景删除了armeabi-v7a文件夹子,然后ctrl + z 恢复回来,再运行就出现这个错误了;解决办法把armeabi-v7a文件夹下so全部删除,然后重新拷贝一份原始的进去就好了...

#android
kotlin lateinit

有的小伙伴刚开始写 Kotlin 代码的时候,会把写 Java 代码的习惯也带过来,比如这样:class Demo {var value: Stringfun printValue() {println(value)}}当然,这样写的后果就是一个编译错误:Error:(2, 5) Kotlin: Property must be initialized or be abstract这时候,有的小伙

#kotlin
ReactNative 组件声明及导出

学习RN过程中看到的几种组件声明的写法,仅此记录,如有问题还需各位看官指正,谢谢;1.react-native init 项目 自动生成的App.jsconst App: () => React$Node = () => {return (<View><Text>测试</Text></View>...

#react native
react native run-andorid 找不到符号NonNull/Nullable/RequiresApi

环境“react-native”: “0.57.8”问题执行命令:react native run-android 出现找不到符号NonNull/Nullable/RequiresApi找到问题所在的类发现都默认导入androidx.annotation下的类;因项目未适配androidx,所以理论上不应该出现这种问题问题原因因为npm install导致依赖的sdk版本未锁定,使用了适配andr

#reactnative
kotlin点击事件

kotlin几种设置点击事件方式1.匿名内部类2.实现View.OnClickListener接口的onClick方法3.控件添加onClick属性,对应activity或者fragment中添加对应方法布局文件<TextViewandroid:id="@+id/test"android:layout_width="match_parent"android:layout_height="48

#kotlin
    共 22 条
  • 1
  • 2
  • 3
  • 请选择