Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
R
react-native-amap3d
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
放牛的园子
react-native-amap3d
Commits
6689b323
Commit
6689b323
authored
May 28, 2017
by
Qiu Xiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
移除无用文件
parent
9917437f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
67 deletions
+0
-67
.npmignore
.npmignore
+0
-2
BUCK
example/android/app/BUCK
+0
-65
No files found.
.npmignore
deleted
100644 → 0
View file @
9917437f
example/
\ No newline at end of file
example/android/app/BUCK
deleted
100644 → 0
View file @
9917437f
#
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
#
lib_deps
=
[]
for
jarfile
in
glob
([
'libs/*.jar'
]):
name
=
'jars__'
+
jarfile
[
jarfile
.
rindex
(
'/'
)
+
1
:
jarfile
.
rindex
(
'.jar'
)]
lib_deps
.
append
(
':'
+
name
)
prebuilt_jar
(
name
=
name
,
binary_jar
=
jarfile
,
)
for
aarfile
in
glob
([
'libs/*.aar'
]):
name
=
'aars__'
+
aarfile
[
aarfile
.
rindex
(
'/'
)
+
1
:
aarfile
.
rindex
(
'.aar'
)]
lib_deps
.
append
(
':'
+
name
)
android_prebuilt_aar
(
name
=
name
,
aar
=
aarfile
,
)
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.example"
,
)
android_resource
(
name
=
"res"
,
package
=
"com.example"
,
res
=
"src/main/res"
,
)
android_binary
(
name
=
"app"
,
keystore
=
"//android/keystores:debug"
,
manifest
=
"src/main/AndroidManifest.xml"
,
package_type
=
"debug"
,
deps
=
[
":app-code"
,
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment