Skip to content

Commit fb0c3b9

Browse files
authored
Merge pull request #2 from jpush/dev
Dev
2 parents c2635fc + c6401ad commit fb0c3b9

File tree

930 files changed

+38636
-1
lines changed

Some content is hidden

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

930 files changed

+38636
-1
lines changed

.gitignore

+292
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,292 @@
1+
### Android template
2+
# Built application files
3+
*.apk
4+
*.ap_
5+
6+
# Files for the ART/Dalvik VM
7+
*.dex
8+
9+
# Java class files
10+
*.class
11+
12+
# Generated files
13+
bin/
14+
gen/
15+
out/
16+
17+
# Gradle files
18+
.gradle/
19+
build/
20+
21+
# Local configuration file (sdk path, etc)
22+
local.properties
23+
24+
# Proguard folder generated by Eclipse
25+
proguard/
26+
27+
# Log Files
28+
*.log
29+
30+
# Android Studio Navigation editor temp files
31+
.navigation/
32+
33+
# Android Studio captures folder
34+
captures/
35+
36+
# IntelliJ
37+
*.iml
38+
.idea/workspace.xml
39+
.idea/tasks.xml
40+
.idea/gradle.xml
41+
.idea/dictionaries
42+
.idea/libraries
43+
44+
# Keystore files
45+
# Uncomment the following line if you do not want to check your keystore files in.
46+
#*.jks
47+
48+
# External native build folder generated in Android Studio 2.2 and later
49+
.externalNativeBuild
50+
51+
# Google Services (e.g. APIs or Firebase)
52+
google-services.json
53+
54+
# Freeline
55+
freeline.py
56+
freeline/
57+
freeline_project_description.json
58+
59+
### JetBrains template
60+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
61+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
62+
63+
# User-specific stuff:
64+
.idea/**/workspace.xml
65+
.idea/**/tasks.xml
66+
67+
# Sensitive or high-churn files:
68+
.idea/**/dataSources/
69+
.idea/**/dataSources.ids
70+
.idea/**/dataSources.xml
71+
.idea/**/dataSources.local.xml
72+
.idea/**/sqlDataSources.xml
73+
.idea/**/dynamic.xml
74+
.idea/**/uiDesigner.xml
75+
76+
# Gradle:
77+
.idea/**/gradle.xml
78+
.idea/**/libraries
79+
80+
# CMake
81+
cmake-build-debug/
82+
cmake-build-release/
83+
84+
# Mongo Explorer plugin:
85+
.idea/**/mongoSettings.xml
86+
87+
## File-based project format:
88+
*.iws
89+
90+
## Plugin-specific files:
91+
92+
# IntelliJ
93+
94+
# mpeltonen/sbt-idea plugin
95+
.idea_modules/
96+
97+
# JIRA plugin
98+
atlassian-ide-plugin.xml
99+
100+
# Cursive Clojure plugin
101+
.idea/replstate.xml
102+
103+
# Crashlytics plugin (for Android Studio and IntelliJ)
104+
com_crashlytics_export_strings.xml
105+
crashlytics.properties
106+
crashlytics-build.properties
107+
fabric.properties
108+
109+
### VisualStudioCode template
110+
.vscode/*
111+
!.vscode/settings.json
112+
!.vscode/tasks.json
113+
!.vscode/launch.json
114+
!.vscode/extensions.json
115+
116+
### Xcode template
117+
# Xcode
118+
#
119+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
120+
121+
## User settings
122+
xcuserdata/
123+
124+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
125+
*.xcscmblueprint
126+
*.xccheckout
127+
128+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
129+
DerivedData/
130+
*.moved-aside
131+
*.pbxuser
132+
!default.pbxuser
133+
*.mode1v3
134+
!default.mode1v3
135+
*.mode2v3
136+
!default.mode2v3
137+
*.perspectivev3
138+
!default.perspectivev3
139+
140+
### Node template
141+
# Logs
142+
logs
143+
npm-debug.log*
144+
yarn-debug.log*
145+
yarn-error.log*
146+
147+
# Runtime data
148+
pids
149+
*.pid
150+
*.seed
151+
*.pid.lock
152+
153+
# Directory for instrumented libs generated by jscoverage/JSCover
154+
lib-cov
155+
156+
# Coverage directory used by tools like istanbul
157+
coverage
158+
159+
# nyc test coverage
160+
.nyc_output
161+
162+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
163+
.grunt
164+
165+
# Bower dependency directory (https://bower.io/)
166+
bower_components
167+
168+
# node-waf configuration
169+
.lock-wscript
170+
171+
# Compiled binary addons (https://nodejs.org/api/addons.html)
172+
build/Release
173+
174+
# Dependency directories
175+
node_modules/
176+
jspm_packages/
177+
178+
# Typescript v1 declaration files
179+
typings/
180+
181+
# Optional npm cache directory
182+
.npm
183+
184+
# Optional eslint cache
185+
.eslintcache
186+
187+
# Optional REPL history
188+
.node_repl_history
189+
190+
# Output of 'npm pack'
191+
*.tgz
192+
193+
# Yarn Integrity file
194+
.yarn-integrity
195+
196+
# dotenv environment variables file
197+
.env
198+
199+
# next.js build output
200+
.next
201+
202+
### Customize
203+
package-lock.json
204+
yarn.lock
205+
*.qshell
206+
*.DS_Store
207+
208+
*.gitattributes
209+
210+
### Objective-C ###
211+
# Xcode
212+
#
213+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
214+
215+
## Build generated
216+
DerivedData/
217+
218+
## Various settings
219+
*.pbxuser
220+
!default.pbxuser
221+
*.mode1v3
222+
!default.mode1v3
223+
*.mode2v3
224+
!default.mode2v3
225+
*.perspectivev3
226+
!default.perspectivev3
227+
xcuserdata/
228+
229+
## Other
230+
*.moved-aside
231+
*.xccheckout
232+
*.xcscmblueprint
233+
234+
## Obj-C/Swift specific
235+
*.hmap
236+
*.ipa
237+
*.dSYM.zip
238+
*.dSYM
239+
240+
# CocoaPods
241+
#
242+
# We recommend against adding the Pods directory to your .gitignore. However
243+
# you should judge for yourself, the pros and cons are mentioned at:
244+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
245+
#
246+
# Pods/
247+
248+
# Carthage
249+
#
250+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
251+
# Carthage/Checkouts
252+
253+
Carthage/Build
254+
255+
# fastlane
256+
#
257+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
258+
# screenshots whenever they are needed.
259+
# For more information about the recommended setup visit:
260+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
261+
262+
fastlane/report.xml
263+
fastlane/Preview.html
264+
fastlane/screenshots
265+
fastlane/test_output
266+
267+
# Code Injection
268+
#
269+
# After new code Injection tools there's a generated folder /iOSInjectionProject
270+
# https://github.com/johnno1962/injectionforxcode
271+
272+
iOSInjectionProject/
273+
274+
### Objective-C Patch ###
275+
276+
### Xcode ###
277+
# Xcode
278+
#
279+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
280+
281+
## Build generated
282+
283+
## Various settings
284+
285+
## Other
286+
287+
### Xcode Patch ###
288+
*.xcodeproj/*
289+
!*.xcodeproj/project.pbxproj
290+
!*.xcodeproj/xcshareddata/
291+
!*.xcworkspace/contents.xcworkspacedata
292+
/*.gcno

JVerification_Hbuilder_Demo/App.vue

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<script>
2+
export default {
3+
onLaunch: function() {
4+
console.log('App Launch')
5+
},
6+
onShow: function() {
7+
console.log('App Show')
8+
},
9+
onHide: function() {
10+
console.log('App Hide')
11+
}
12+
}
13+
</script>
14+
15+
<style>
16+
/*每个页面公共css */
17+
</style>

JVerification_Hbuilder_Demo/main.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import Vue from 'vue'
2+
import App from './App'
3+
4+
Vue.config.productionTip = false
5+
6+
App.mpType = 'app'
7+
8+
const app = new Vue({
9+
...App
10+
})
11+
app.$mount()

0 commit comments

Comments
 (0)