mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 21:58:02 +00:00
b3e9b70341
* add readme * react-native example app * update readme * add ios-cli dep * revert package.json change * update readme * update readme * don't auto launch metro * add react native scripts * nohoist @react-native-community/** * update readme * undo wrong README change * remove react-native root dep * copyright headers * semi-style * add default gitignore * finish linting * remove test for now * fix typescript errors * fix linting * update scripts * update deps and version * update readme * remove accidental dep * update readme * bump deps * update yarn.lock * actually update yarn.lock * fix yarn.lock conflicts by updating exampleReactNative deps
56 lines
1.3 KiB
Plaintext
Executable File
56 lines
1.3 KiB
Plaintext
Executable File
# To learn about Buck see [Docs](https://buckbuild.com/).
|
|
# To run your application with Buck:
|
|
# - install Buck
|
|
# - `npm start` - to start the packager
|
|
# - `cd android`
|
|
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
|
|
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
|
|
# - `buck install -r android/app` - compile, install and run application
|
|
#
|
|
|
|
load(":build_defs.bzl", "create_aar_targets", "create_jar_targets")
|
|
|
|
lib_deps = []
|
|
|
|
create_aar_targets(glob(["libs/*.aar"]))
|
|
|
|
create_jar_targets(glob(["libs/*.jar"]))
|
|
|
|
android_library(
|
|
name = "all-libs",
|
|
exported_deps = lib_deps,
|
|
)
|
|
|
|
android_library(
|
|
name = "app-code",
|
|
srcs = glob([
|
|
"src/main/java/**/*.java",
|
|
]),
|
|
deps = [
|
|
":all-libs",
|
|
":build_config",
|
|
":res",
|
|
],
|
|
)
|
|
|
|
android_build_config(
|
|
name = "build_config",
|
|
package = "com.examplereactnative",
|
|
)
|
|
|
|
android_resource(
|
|
name = "res",
|
|
package = "com.examplereactnative",
|
|
res = "src/main/res",
|
|
)
|
|
|
|
android_binary(
|
|
name = "app",
|
|
keystore = "//android/keystores:debug",
|
|
manifest = "src/main/AndroidManifest.xml",
|
|
package_type = "debug",
|
|
deps = [
|
|
":app-code",
|
|
],
|
|
)
|