Skip to content

Commit 7e99dc8

Browse files
Publish library
0 parents  commit 7e99dc8

File tree

128 files changed

+40009
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+40009
-0
lines changed

.buckconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
[android]
3+
target = Google Inc.:Google APIs:23
4+
5+
[maven_repositories]
6+
central = https://repo1.maven.org/maven2

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Windows files
2+
[*.bat]
3+
end_of_line = crlf

.eslintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
root: true,
3+
extends: '@react-native-community',
4+
};

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Windows files should use crlf line endings
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
*.bat text eol=crlf

.gitignore

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
24+
# Android/IntelliJ
25+
#
26+
build/
27+
.idea
28+
.gradle
29+
local.properties
30+
*.iml
31+
32+
# node.js
33+
#
34+
node_modules/
35+
npm-debug.log
36+
yarn-error.log
37+
38+
# BUCK
39+
buck-out/
40+
\.buckd/
41+
*.keystore
42+
!debug.keystore
43+
44+
# fastlane
45+
#
46+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47+
# screenshots whenever they are needed.
48+
# For more information about the recommended setup visit:
49+
# https://docs.fastlane.tools/best-practices/source-control/
50+
51+
*/fastlane/report.xml
52+
*/fastlane/Preview.html
53+
*/fastlane/screenshots
54+
55+
# Bundle artifact
56+
*.jsbundle
57+
58+
# CocoaPods
59+
/ios/Pods/

.prettierrc.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
bracketSpacing: false,
3+
jsxBracketSameLine: true,
4+
singleQuote: true,
5+
trailingComma: 'all',
6+
arrowParens: 'avoid',
7+
};

.watchmanconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

__tests__/App-test.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/**
2+
* @format
3+
*/
4+
5+
import 'react-native';
6+
import React from 'react';
7+
import App from '../App';
8+
9+
// Note: test renderer must be required after react-native.
10+
import renderer from 'react-test-renderer';
11+
12+
it('renders correctly', () => {
13+
renderer.create(<App />);
14+
});

android/app/_BUCK

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# To learn about Buck see [Docs](https://buckbuild.com/).
2+
# To run your application with Buck:
3+
# - install Buck
4+
# - `npm start` - to start the packager
5+
# - `cd android`
6+
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
7+
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
8+
# - `buck install -r android/app` - compile, install and run application
9+
#
10+
11+
load(":build_defs.bzl", "create_aar_targets", "create_jar_targets")
12+
13+
lib_deps = []
14+
15+
create_aar_targets(glob(["libs/*.aar"]))
16+
17+
create_jar_targets(glob(["libs/*.jar"]))
18+
19+
android_library(
20+
name = "all-libs",
21+
exported_deps = lib_deps,
22+
)
23+
24+
android_library(
25+
name = "app-code",
26+
srcs = glob([
27+
"src/main/java/**/*.java",
28+
]),
29+
deps = [
30+
":all-libs",
31+
":build_config",
32+
":res",
33+
],
34+
)
35+
36+
android_build_config(
37+
name = "build_config",
38+
package = "com.reactnativeflatlistwrapper",
39+
)
40+
41+
android_resource(
42+
name = "res",
43+
package = "com.reactnativeflatlistwrapper",
44+
res = "src/main/res",
45+
)
46+
47+
android_binary(
48+
name = "app",
49+
keystore = "//android/keystores:debug",
50+
manifest = "src/main/AndroidManifest.xml",
51+
package_type = "debug",
52+
deps = [
53+
":app-code",
54+
],
55+
)

android/app/build.gradle

Lines changed: 222 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,222 @@
1+
apply plugin: "com.android.application"
2+
3+
import com.android.build.OutputFile
4+
5+
/**
6+
* The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
7+
* and bundleReleaseJsAndAssets).
8+
* These basically call `react-native bundle` with the correct arguments during the Android build
9+
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
10+
* bundle directly from the development server. Below you can see all the possible configurations
11+
* and their defaults. If you decide to add a configuration block, make sure to add it before the
12+
* `apply from: "../../node_modules/react-native/react.gradle"` line.
13+
*
14+
* project.ext.react = [
15+
* // the name of the generated asset file containing your JS bundle
16+
* bundleAssetName: "index.android.bundle",
17+
*
18+
* // the entry file for bundle generation. If none specified and
19+
* // "index.android.js" exists, it will be used. Otherwise "index.js" is
20+
* // default. Can be overridden with ENTRY_FILE environment variable.
21+
* entryFile: "index.android.js",
22+
*
23+
* // https://reactnative.dev/docs/performance#enable-the-ram-format
24+
* bundleCommand: "ram-bundle",
25+
*
26+
* // whether to bundle JS and assets in debug mode
27+
* bundleInDebug: false,
28+
*
29+
* // whether to bundle JS and assets in release mode
30+
* bundleInRelease: true,
31+
*
32+
* // whether to bundle JS and assets in another build variant (if configured).
33+
* // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
34+
* // The configuration property can be in the following formats
35+
* // 'bundleIn${productFlavor}${buildType}'
36+
* // 'bundleIn${buildType}'
37+
* // bundleInFreeDebug: true,
38+
* // bundleInPaidRelease: true,
39+
* // bundleInBeta: true,
40+
*
41+
* // whether to disable dev mode in custom build variants (by default only disabled in release)
42+
* // for example: to disable dev mode in the staging build type (if configured)
43+
* devDisabledInStaging: true,
44+
* // The configuration property can be in the following formats
45+
* // 'devDisabledIn${productFlavor}${buildType}'
46+
* // 'devDisabledIn${buildType}'
47+
*
48+
* // the root of your project, i.e. where "package.json" lives
49+
* root: "../../",
50+
*
51+
* // where to put the JS bundle asset in debug mode
52+
* jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
53+
*
54+
* // where to put the JS bundle asset in release mode
55+
* jsBundleDirRelease: "$buildDir/intermediates/assets/release",
56+
*
57+
* // where to put drawable resources / React Native assets, e.g. the ones you use via
58+
* // require('./image.png')), in debug mode
59+
* resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
60+
*
61+
* // where to put drawable resources / React Native assets, e.g. the ones you use via
62+
* // require('./image.png')), in release mode
63+
* resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
64+
*
65+
* // by default the gradle tasks are skipped if none of the JS files or assets change; this means
66+
* // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
67+
* // date; if you have any other folders that you want to ignore for performance reasons (gradle
68+
* // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
69+
* // for example, you might want to remove it from here.
70+
* inputExcludes: ["android/**", "ios/**"],
71+
*
72+
* // override which node gets called and with what additional arguments
73+
* nodeExecutableAndArgs: ["node"],
74+
*
75+
* // supply additional arguments to the packager
76+
* extraPackagerArgs: []
77+
* ]
78+
*/
79+
80+
project.ext.react = [
81+
enableHermes: false, // clean and rebuild if changing
82+
]
83+
84+
apply from: "../../node_modules/react-native/react.gradle"
85+
86+
/**
87+
* Set this to true to create two separate APKs instead of one:
88+
* - An APK that only works on ARM devices
89+
* - An APK that only works on x86 devices
90+
* The advantage is the size of the APK is reduced by about 4MB.
91+
* Upload all the APKs to the Play Store and people will download
92+
* the correct one based on the CPU architecture of their device.
93+
*/
94+
def enableSeparateBuildPerCPUArchitecture = false
95+
96+
/**
97+
* Run Proguard to shrink the Java bytecode in release builds.
98+
*/
99+
def enableProguardInReleaseBuilds = false
100+
101+
/**
102+
* The preferred build flavor of JavaScriptCore.
103+
*
104+
* For example, to use the international variant, you can use:
105+
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
106+
*
107+
* The international variant includes ICU i18n library and necessary data
108+
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
109+
* give correct results when using with locales other than en-US. Note that
110+
* this variant is about 6MiB larger per architecture than default.
111+
*/
112+
def jscFlavor = 'org.webkit:android-jsc:+'
113+
114+
/**
115+
* Whether to enable the Hermes VM.
116+
*
117+
* This should be set on project.ext.react and mirrored here. If it is not set
118+
* on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
119+
* and the benefits of using Hermes will therefore be sharply reduced.
120+
*/
121+
def enableHermes = project.ext.react.get("enableHermes", false);
122+
123+
android {
124+
ndkVersion rootProject.ext.ndkVersion
125+
126+
compileSdkVersion rootProject.ext.compileSdkVersion
127+
128+
compileOptions {
129+
sourceCompatibility JavaVersion.VERSION_1_8
130+
targetCompatibility JavaVersion.VERSION_1_8
131+
}
132+
133+
defaultConfig {
134+
applicationId "com.reactnativeflatlistwrapper"
135+
minSdkVersion rootProject.ext.minSdkVersion
136+
targetSdkVersion rootProject.ext.targetSdkVersion
137+
versionCode 1
138+
versionName "1.0"
139+
}
140+
splits {
141+
abi {
142+
reset()
143+
enable enableSeparateBuildPerCPUArchitecture
144+
universalApk false // If true, also generate a universal APK
145+
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
146+
}
147+
}
148+
signingConfigs {
149+
debug {
150+
storeFile file('debug.keystore')
151+
storePassword 'android'
152+
keyAlias 'androiddebugkey'
153+
keyPassword 'android'
154+
}
155+
}
156+
buildTypes {
157+
debug {
158+
signingConfig signingConfigs.debug
159+
}
160+
release {
161+
// Caution! In production, you need to generate your own keystore file.
162+
// see https://reactnative.dev/docs/signed-apk-android.
163+
signingConfig signingConfigs.debug
164+
minifyEnabled enableProguardInReleaseBuilds
165+
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
166+
}
167+
}
168+
169+
// applicationVariants are e.g. debug, release
170+
applicationVariants.all { variant ->
171+
variant.outputs.each { output ->
172+
// For each separate APK per architecture, set a unique version code as described here:
173+
// https://developer.android.com/studio/build/configure-apk-splits.html
174+
// Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc.
175+
def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
176+
def abi = output.getFilter(OutputFile.ABI)
177+
if (abi != null) { // null for the universal-debug, universal-release variants
178+
output.versionCodeOverride =
179+
defaultConfig.versionCode * 1000 + versionCodes.get(abi)
180+
}
181+
182+
}
183+
}
184+
}
185+
186+
dependencies {
187+
implementation fileTree(dir: "libs", include: ["*.jar"])
188+
//noinspection GradleDynamicVersion
189+
implementation "com.facebook.react:react-native:+" // From node_modules
190+
191+
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
192+
193+
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
194+
exclude group:'com.facebook.fbjni'
195+
}
196+
197+
debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
198+
exclude group:'com.facebook.flipper'
199+
exclude group:'com.squareup.okhttp3', module:'okhttp'
200+
}
201+
202+
debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
203+
exclude group:'com.facebook.flipper'
204+
}
205+
206+
if (enableHermes) {
207+
def hermesPath = "../../node_modules/hermes-engine/android/";
208+
debugImplementation files(hermesPath + "hermes-debug.aar")
209+
releaseImplementation files(hermesPath + "hermes-release.aar")
210+
} else {
211+
implementation jscFlavor
212+
}
213+
}
214+
215+
// Run this once to be able to run the application with BUCK
216+
// puts all compile dependencies into folder libs for BUCK to use
217+
task copyDownloadableDepsToLibs(type: Copy) {
218+
from configurations.compile
219+
into 'libs'
220+
}
221+
222+
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)

0 commit comments

Comments
 (0)