一款轻阅读应用ReadIT,记录我的RN躺坑之旅
背景
一款轻阅读应用ReadIT,支持功能:优质文章推送、评论点赞、计划制定、计划闹钟、天气预报、收藏文章、深浅两套主题、多语言切换、极光推送等功能。后续还会继续集成功能。前后端均自主研发,借鉴市面较好的种子工程,目前未上应用市场,文章目前也比较少,后续会持续补充优质文章。
展示效果
下载体验(目前只有安卓版)
Github
https://github.com/xiaobinwu/readIt
技能树
1、客户端(react-native、@react-navigation、react-native第三方库、typescript、mobx、marked等技术)
2、中台后管系统(antd4、react、redux、react-router4、hook等技术)
3、后端程序(koa、mongoDb、jsonwebtoken、ali-oss等技术)
react-devtools调试(安卓模拟器)
1、开发者菜单中选择"Debug JS Remotely"选项
2、自动打开调试页面 http://localhost:8081/debugger-ui(可做断点调试)
3、打开有异常时暂停(Pause On Caught Exceptions)选项,能够获得更好的开发体验
4、设置环境变量ELECTRON_MIRROR='https://npm.taobao.org/mirrors/electron/'
,防止下载react-devtool
卡住
5、安装react-devtools,package.json配置npm script,执行npm run react-devtools
6、执行adb reverse tcp:8097 tcp:8097
7、目前react-native => 0.61.5,react-devtool => 3.6.3
8、参考资料:参考资料
注意:react-devtools v4 需要 react-native 0.62 或更高版本才能正常工作。一升级就报错,后续跟进
iconfont字体图标使用
1、下载Iconfont字体图标项目,下载至本地,获取iconfont.ttf
2、放至src/assets/fonts
目录
3、配置react-native.config.js
,参考资料,如下:
module.exports = {
project: {
ios: {},
android: {}, // grouped into "project"
},
assets: ["./src/assets/fonts/"], // stays the same
};
4、运行npm run link
,将对应iconfont.ttf
分别添加至iOS
(Info.plist
中Fonts provided by application
下添加一行iconfont.ttf
)、Android
(复制至app/src/main/assets/fonts
文件夹中,并且app/src/build.gradle
添加配置)
5、将iconfont.json
复制至src/components/common/iconfont
6、字体图标封装可参考第4步目录相对应组件文件
7、参考资料:参考资料
tsconfig.json配置
1、详细各个配置项解析,可查看tsconfig.json
2、配置paths
,结果不起效,需在src
目录添加package.json
,配置如下
{
"name": "@app"
}
第三方库
1、autobind-decorator
=> 自动将方法绑定到类实例,针对babel7需额外配置插件,如下:
{
plugins: ["@babel/plugin-proposal-decorators", { legacy: true }]
}
2、mobx
/ mobx-react
=> 简单、可扩展的状态管理,前往
3、@react-navigation/bottom-tabs
/ @react-navigation/native
/ @react-navigation/stack
=> 跨平台导航方案,前往
4、react-native-appearance
=> 在iOS,Android和Web上访问操作系统外观信息。目前支持检测首选配色方案(浅色/深色),前往
5、react-native-localize
=> 用于React Native应用本地化的工具箱,前往
6、@react-native-community/async-storage
=> 简单的、异步的、持久化的 Key-Value 存储系统,前往
7、react-native-actionsheet
=> 跨平台ActionSheet,前往
8、react-native-webview
=> WebView,旨在替代内置WebView,前往
9、marked
=> markdown编译器,前往
10、highlight.js
=> 代码高亮工具,前往
11、react-native-autoheight-webview
=> React Native的自动高度webview,前往
12、react-native-image-viewing
=> 图片滑动浏览控件,前往
13、react-native-root-toast
=> 吐司控件,前往
14、react-native-calendars
=> 日历,前往
15、jcore-react-native
、jpush-react-native
=> 极光推送
16、react-native-alarm-clock
=> 闹钟,前往
17、react-native-amap-geolocation
=> 高德地址服务,前往
18、 react-native-device-info
=> 获取设备信息,前往
19、 react-native-image-picker
=> 上传图片,前往
20、react-native-modal-datetime-picker
=> 时间选择器,前往
21、react-native-picker-select
=> 下拉框选择器,前往
22、react-native-splash-screen
=> 应用启动图,前往
第三方库躺坑
如何获取当前天气、未来三天天气?
使用的是和风天气API,需要经纬入参,所以必须先获取位置,需要申请和风天气的appKey。
推送服务
极光推送服务 jcore-react-native
、jpush-react-native
,需要申请AppKey。
如何获取位置?
Part1,使用react-native-geolocation-service
第三方库,获取经纬度进行高德逆地理编码API调用,获取城市,开启google play服务,需要有处理获取位置的服务程序app/services/location
(参考react-native-geolocation-service
github example),以及修改android/app/src/main/AndroidManifest.xml
,添加<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
安卓添加权限。结果不行,针对google play服务国内不能使用,所以该方案得摒弃掉,对应app/services/location
会删除。
Part2,使用react-native-amap-geolocation
第三方库,接口文档,使用指南
图片上传问题
对于react-native-image-picker
第三方库, 对于3.1.4
版本,minSdkVersion
最少要21以上,在使用的react-native 0.61.5
下,修改android/build.gradle
的minSdkVersion
配置
阿里oss aliyun-oss-rn
,需要更改aliyun-oss-rn
npm包的android/build.gradle
(如下配置),提高SDK版本号,以及修改主项目AndroidManifest.xml
,添加android:allowBackup="true"
,目前使用上仍有问题,于是放弃该方案,改用oss postObject直传方式,参考资料,使用sts临时授权、policy、Signature配合上传。
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
lintOptions {
abortOnError false
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'com.facebook.react:react-native:+'
implementation 'com.aliyun.dpa:oss-android-sdk:+'
}
日历问题
react-native-calendars
的Agenda
问题如下:
一、国际化切换、主题切换时,日历没有对应切换,对应HACK处理方法,给Agenda
组件设置key
,强制组件卸载,重新加载
二、Agenda
在国际化切换、主题切换、添加日程的时候,会导致Agenda
组件内部View
组件onLayout
重复触发(我是不需要其一直触发),导致this.viewHeight
一直发生变化,导致每次动画执行定位不准问题,处理方法,用个变量存储this.viewHeight
,示例代码如下:
let VIEW_HEIGHT = 0;
constructor(props) {
this.viewHeight = VIEW_HEIGHT || windowSize.height;
}
onLayout = event => {
if (!VIEW_HEIGHT) {
VIEW_HEIGHT = event.nativeEvent.layout.height;
this.viewHeight = event.nativeEvent.layout.height;
this.viewWidth = event.nativeEvent.layout.width;
this.forceUpdate();
}
};
三、日程列表改造,只显示当前选中日期的的日程,Agenda
组件代码改造如下:
renderReservations() {
const reservationListProps = extractComponentProps(ReservationList, this.props);
let reservations = {};
const { items } = this.props;
if (this.props.selected && items[this.props.selected.dateString]) {
reservations = { [this.props.selected.dateString]: items[this.props.selected.dateString] };
}
console.log(this.props.selected, '选中的时间');
return (
<ReservationList
{...reservationListProps}
ref={c => (this.list = c)}
reservations={reservations}
selectedDay={this.state.selectedDay}
topDay={this.state.topDay}
onDayChange={this.onDayChange}
onScroll={() => {}}
/>
);
}
闹钟问题
react-native-alarm-clock
,目前yarn、npm均不能下载1.0.0
,只能将2.0.0
版本下载至本地,替换node_moudules
中的对应npm
包,功能使用还未考证,仍有问题。
选择下拉框问题
react-native-picker-select
,报错信息 "RNCAndroidDialogPicker" was not found in the UIManager
,参考Issues,解决办法,降级@react-native-picker/picker
至 1.8.3
打包 APK 问题
管理员CMD,参考
#keytool -genkey -dname "CN=wushaobin,OU=个人,O=个人,L=深圳,ST=广东,C=CN" -alias test -keyalg RSA -validity 400000 -keystore test.keystore
#keytool -importkeystore -srckeystore test.keystore -destkeystore test.keystore -deststoretype pkcs12
#keytool -list -v -keystore test.keystore -storepass xxxxxxxxx
或 keytool -genkeypair -v -keystore test.keystore -alias test -keyalg RSA -keysize 2048 -validity 400000
app应用启动图
1、下载react-native-splash-screen
2、android/app/src/main/java/com/readit/MainActivity.java
,配置如下:
import com.facebook.react.ReactActivity;
+ import org.devio.rn.splashscreen.SplashScreen;
+ import android.os.Bundle;
public class MainActivity extends ReactActivity {
/**
@@ -12,4 +15,11 @@
protected String getMainComponentName() {
return "readIt";
}
// 添加下面方法
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ SplashScreen.show(this); // here
+ super.onCreate(savedInstanceState);
+ }
}
3、android/app/src/main/res/layout/launch_screen.xml
配置如下(没有就添加):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:src="@drawable/launch_screen" android:scaleType="centerCrop" />
</LinearLayout>
4、android/app/src/main/res/values/styles.xml
配置如下:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:textColor">#000000</item>
+ <!--添加这一行-->
+ <item name="android:windowIsTranslucent">true</item>
</style>
5、使用如下:
import SplashScreen from 'react-native-splash-screen';
...
componentDidMount() {
SplashScreen.hide();
}
app应用图标问题
替换android/app/src/main/res/mipmap-*文件夹中图标图片
./gradlew assembleRelease失败问题
1、先执行./gradlew clean,卸载上一个debug版本
2、再执行./gradlew assembleRelease,生成release版本
常用指令 ./gradlew clean
、./gradlew build
编译错误:The Kotlin Gradle plugin was loaded multiple times in different subprojects, which is not supported and may break the build. 问题解决方案:
参考: https://forums.expo.io/t/kotlin-error-when-build-or-install/38868
./gradlew assembleRelease 编译失败
失败信息: Error: ENOENT: no such file or directory, open 'F:\Project\reactnative\readIt\android\app\build\generated\sourcemaps\react\release\index.android.bundle.map'
发布版本时,删除build/debug.apk
,执行./gradlew clean
React Native Android9.0以上打包apk后http请求不到解决方法
一款轻阅读应用ReadIT,记录我的RN躺坑之旅的更多相关文章
- 五款轻量型bug管理工具横向测评
五款轻量型bug管理工具横向测评 最近正在使用的本地bug管理软件又出问题了,已经记不清这是第几次了,每次出现问题都要耗费大量的时间精力去网上寻找解决方案,劳心劳力.为了避免再次出现这样的情况,我决定 ...
- Android--从零开始开发一款文章阅读APP
代码地址如下:http://www.demodashi.com/demo/11212.html 前言 本案例已经开源!如果你想免费下载,可以访问我的Github,所有案例均在上面,只求给个star.当 ...
- Android开源实战:使用MVP+Retrofit开发一款文字阅读APP
文字控 使用MVP+Retrofit开发的一款文艺APP,它是一个非常优美的文字阅读应用,界面基本上符合material design设计规范. 在该项目中,我采用的是MVP架构,该架构目前在Andr ...
- 推荐一款轻量小众却高效免费开源windows热键脚本语言Autohotkey
写在前面的话 Autohotkey是一款轻量小众但高效免费开源的windows热键脚本语言,游戏操纵.鼠标操作.键盘快捷重定义,快捷短语等等,只有你想不到,没有它做不到,神器中的神器呀,相见恨晚. 安 ...
- 记录Jackson和Lombok的坑
记录Jackson和Lombok的坑 今天遇到Jackson反序列化json缺少了字段,后来研究下发现是Jackson的机制和Lombok生成的setter不一致,导致没有正确调用setter. 复现 ...
- Dzz任务板初版完成笔记-仿trello私有部署的一款轻量团队任务协作工具。
刚完成了第一个版本Dzz任务板的设计开发,记录下设计思路和完成情况. Dzz任务板是DzzOffice中的团队协作套件中的一款应用,它需要安装在DzzOffice中使用. 主界面中需要能够快速简单的创 ...
- Droplet——一款轻量的Golang应用层框架
Github地址 如标题所描述的,Droplet 是一个 轻量 的 中间层框架,何为中间层呢? 通常来说,我们的程序(注意这里我们仅仅讨论程序的范围,而非作为一个系统,因此这里不设计如 LB.Gate ...
- 2016年31款轻量高效的开源JavaScript插件和库
目前有很多网站设计师和开发者喜欢使用由JavaScript开发的插件和库,但同时面临一个苦恼的问题:它们中的大多数实在是太累赘而且常常降低网站的性能.其实,其中也有不少轻量级的插件和库,它们不仅轻巧有 ...
- AspNetCore.FileLog 一款很不错的日志记录工具
AspNetCore.FileLog 该项目作者为伟哥,GitHub地址:https://github.com/amh1979:该项目维护者为鸟窝,GitHub地址:https://github.co ...
随机推荐
- how to create react custom hooks with arguments
how to create react custom hooks with arguments React Hooks & Custom Hooks // reusable custom ho ...
- GitHub for mobile
GitHub for mobile https://github.com/mobile
- js in depth: arrow function & prototype & this & constructor
js in depth: arrow function & prototype & this & constructor https://developer.mozilla.o ...
- windows10 WSL
搭建WSL linux下的home目录,映射windows的目录地址 用户家目录 ➜ ~ pwd /home/ajanuw C:\Users\ajanuw\AppData\Local\Packages ...
- vue的filter用法,检索内容
var app5 = new Vue({ el: '#app5', data: { shoppingList: [ "Milk", "Donuts", &quo ...
- 【PY从0到1】 一文掌握Pandas量化进阶
# 一文掌握Pandas量化进阶 # 这节课学习Pandas更深的内容. # 导入库: import numpy as np import pandas as pd # 制作DataFrame np. ...
- 翻译:《实用的Python编程》02_01_Datatypes
目录 | 上一节 (1.7 函数) | 下一节 (2.2 容器) 2.1 数据类型和数据结构 本节以元组和字典为代表介绍数据结构. 原始数据类型 Python 有一些原始数据类型: 整数 浮点数 字符 ...
- 数据处理_HIVE增量ETL的一种方式
适用场景: 贴源层主表历史数据过大,ETL不涉及历史数据对比或聚合 处理流程: 1.确定一个业务主键字段或物理主键字段 2.确定一个可以判断增量数据范围的字段,这取决于具体的业务场景,一般选用记录的创 ...
- 大数据开发-Spark-Streaming处理数据到mysql
前面一篇讲到streamin读取kafka数据加工处理后写到kafka数据,大数据开发-Spark-开发Streaming处理数据 && 写入Kafka是针对比如推荐领域,实时标签等场 ...
- 别再恐惧 IP 协议(万字长文 | 多图预警)
尽人事,听天命.博主东南大学硕士在读,热爱健身和篮球,乐于分享技术相关的所见所得,关注公众号 @ 飞天小牛肉,第一时间获取文章更新,成长的路上我们一起进步 本文已收录于 「CS-Wiki」Gitee ...