Skip to content

Commit

Permalink
[RELEASE] 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hungdt committed Apr 14, 2020
1 parent d474c0a commit c9d2bd6
Show file tree
Hide file tree
Showing 31 changed files with 893 additions and 636 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ Read https://spiderum.com mobile app, powered by react-native

# About

Ứng dụng đọc tin tức từ spiderum.com. Ứng dụng unofficial đến từ cộng đồng người đọc spiderum.com, Tập trung vào các tính năng:

+ Ứng dụng mở và sử dụng nhanh
+ Đọc offline
+ Giao diện dễ dùng và hiện đại
+ Đọc tin tức đầy đủ
+ Tính năng đọc tiếp nối
+ Hỗ trợ giao diện nền tối
An Application to read news from spiderum.com. Unofficial application from spiderum.com reader community, Focus on features:

+ Application open and use quickly
+ Worked properly including network problem
+ Easy to use and modern interface
+ Read the full news
+ Continue reading feature
+ Support dark theme
+ ...

Được xây dựng từ cộng đồng nên ứng dụng không có bất cứ quảng cáo hay phương thức thu lợi nhuận nào.
Built from the community, the application does not have any advertising or profit.

### Download:
https://play.google.com/store/apps/details?id=com.zrgteam.awesome
Expand Down
10 changes: 6 additions & 4 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ import com.android.build.OutputFile
*/

project.ext.react = [
enableHermes: true, // clean and rebuild if changing
enableHermes: false, // clean and rebuild if changing
bundleCommand : "ram-bundle",
// extraPackagerArgs : ["--indexed-ram-bundle"]
]

apply from: "../../node_modules/react-native/react.gradle"
Expand All @@ -96,7 +98,7 @@ def enableSeparateBuildPerCPUArchitecture = true
/**
* Run Proguard to shrink the Java bytecode in release builds.
*/
def enableProguardInReleaseBuilds = false
def enableProguardInReleaseBuilds = true

/**
* The preferred build flavor of JavaScriptCore.
Expand Down Expand Up @@ -132,8 +134,8 @@ android {
applicationId "com.zrgteam.awesome"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 19
versionName "1.1.8"
versionCode 24
versionName "1.2.2"
missingDimensionStrategy 'react-native-camera', 'general'
multiDexEnabled true
}
Expand Down
2 changes: 0 additions & 2 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,3 @@ android.enableJetifier=true

# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.33.1

org.gradle.jvmargs=-Xmx4g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
6 changes: 5 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import './src/libraries/logger'
import { AppRegistry, Platform } from 'react-native'
import { enableScreens } from 'react-native-screens'
import { getTimeSinceStartup } from 'react-native-startup-time'
import { name as appName } from './app.json'
import App from './src/App'
import './src/libraries/logger'

if (Platform.OS !== 'ios') {
enableScreens()
}
console.time('[APPLICATION] Render')
getTimeSinceStartup().then((time) => {
console.info(`Time since startup: ${time} ms`)
})
AppRegistry.registerComponent(appName, () => App)
Loading

0 comments on commit c9d2bd6

Please sign in to comment.