Skip to content

Commit 9cf0353

Browse files
committed
update
1 parent 88140a6 commit 9cf0353

File tree

87 files changed

+4983
-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.

87 files changed

+4983
-1
lines changed

Weex学习/weexStudy/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.DS_Store
22
node_modules/
33
dist/
4-
platforms/
54
npm-debug.log
65
selenium-debug.log
76
test/unit/coverage
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.DS_Store
2+
*.swp
3+
*.swo
4+
build
5+
xcuserdata
6+
dsym/
7+
Podfile.lock
8+
Pods/
9+
*.xcworkspace
10+
*.bak
11+
Ticket/assets/*.js
12+
Ticket/assets/url.txt

Weex学习/weexStudy/platforms/ios/LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
source 'git@github.com/CocoaPods/Specs.git'
2+
platform :ios, '7.0'
3+
#inhibit_all_warnings!
4+
5+
def common
6+
pod 'WeexSDK'
7+
pod 'Weexplugin', :path=>'./Weexplugin/'
8+
pod 'WXDevtool'
9+
pod 'SDWebImage', '3.7.5'
10+
pod 'SocketRocket', '0.4.2'
11+
pod 'ATSDK-Weex', '0.0.1'
12+
end
13+
14+
target 'WeexDemo' do
15+
common
16+
end
17+
18+
target 'WeexUITestDemo' do
19+
common
20+
end

Weex学习/weexStudy/platforms/ios/README.md

Whitespace-only changes.

Weex学习/weexStudy/platforms/ios/WeexDemo.xcodeproj/project.pbxproj

Lines changed: 897 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0710"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "775BEE7A1C1E8ECC008D1629"
18+
BuildableName = "WeexDemo.app"
19+
BlueprintName = "WeexDemo"
20+
ReferencedContainer = "container:WeexDemo.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES"
30+
codeCoverageEnabled = "YES">
31+
<Testables>
32+
<TestableReference
33+
skipped = "NO">
34+
<BuildableReference
35+
BuildableIdentifier = "primary"
36+
BlueprintIdentifier = "775BEE931C1E8ECC008D1629"
37+
BuildableName = "WeexDemoTests.xctest"
38+
BlueprintName = "WeexDemoTests"
39+
ReferencedContainer = "container:WeexDemo.xcodeproj">
40+
</BuildableReference>
41+
</TestableReference>
42+
<TestableReference
43+
skipped = "NO">
44+
<BuildableReference
45+
BuildableIdentifier = "primary"
46+
BlueprintIdentifier = "775BEE9E1C1E8ECC008D1629"
47+
BuildableName = "WeexDemoUITests.xctest"
48+
BlueprintName = "WeexDemoUITests"
49+
ReferencedContainer = "container:WeexDemo.xcodeproj">
50+
</BuildableReference>
51+
</TestableReference>
52+
</Testables>
53+
<MacroExpansion>
54+
<BuildableReference
55+
BuildableIdentifier = "primary"
56+
BlueprintIdentifier = "775BEE7A1C1E8ECC008D1629"
57+
BuildableName = "WeexDemo.app"
58+
BlueprintName = "WeexDemo"
59+
ReferencedContainer = "container:WeexDemo.xcodeproj">
60+
</BuildableReference>
61+
</MacroExpansion>
62+
<AdditionalOptions>
63+
</AdditionalOptions>
64+
</TestAction>
65+
<LaunchAction
66+
buildConfiguration = "Debug"
67+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
68+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
69+
launchStyle = "0"
70+
useCustomWorkingDirectory = "NO"
71+
ignoresPersistentStateOnLaunch = "NO"
72+
debugDocumentVersioning = "YES"
73+
debugServiceExtension = "internal"
74+
allowLocationSimulation = "YES">
75+
<BuildableProductRunnable
76+
runnableDebuggingMode = "0">
77+
<BuildableReference
78+
BuildableIdentifier = "primary"
79+
BlueprintIdentifier = "775BEE7A1C1E8ECC008D1629"
80+
BuildableName = "WeexDemo.app"
81+
BlueprintName = "WeexDemo"
82+
ReferencedContainer = "container:WeexDemo.xcodeproj">
83+
</BuildableReference>
84+
</BuildableProductRunnable>
85+
<AdditionalOptions>
86+
</AdditionalOptions>
87+
</LaunchAction>
88+
<ProfileAction
89+
buildConfiguration = "Release"
90+
shouldUseLaunchSchemeArgsEnv = "YES"
91+
savedToolIdentifier = ""
92+
useCustomWorkingDirectory = "NO"
93+
debugDocumentVersioning = "YES">
94+
<BuildableProductRunnable
95+
runnableDebuggingMode = "0">
96+
<BuildableReference
97+
BuildableIdentifier = "primary"
98+
BlueprintIdentifier = "775BEE7A1C1E8ECC008D1629"
99+
BuildableName = "WeexDemo.app"
100+
BlueprintName = "WeexDemo"
101+
ReferencedContainer = "container:WeexDemo.xcodeproj">
102+
</BuildableReference>
103+
</BuildableProductRunnable>
104+
</ProfileAction>
105+
<AnalyzeAction
106+
buildConfiguration = "Debug">
107+
</AnalyzeAction>
108+
<ArchiveAction
109+
buildConfiguration = "Release"
110+
revealArchiveInOrganizer = "YES">
111+
</ArchiveAction>
112+
</Scheme>
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0720"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "84361D261CA10F8E00F43825"
18+
BuildableName = "WeexUITestDemo.app"
19+
BlueprintName = "WeexUITestDemo"
20+
ReferencedContainer = "container:WeexDemo.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
<MacroExpansion>
33+
<BuildableReference
34+
BuildableIdentifier = "primary"
35+
BlueprintIdentifier = "84361D261CA10F8E00F43825"
36+
BuildableName = "WeexUITestDemo.app"
37+
BlueprintName = "WeexUITestDemo"
38+
ReferencedContainer = "container:WeexDemo.xcodeproj">
39+
</BuildableReference>
40+
</MacroExpansion>
41+
<AdditionalOptions>
42+
</AdditionalOptions>
43+
</TestAction>
44+
<LaunchAction
45+
buildConfiguration = "Debug"
46+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
47+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48+
launchStyle = "0"
49+
useCustomWorkingDirectory = "NO"
50+
ignoresPersistentStateOnLaunch = "NO"
51+
debugDocumentVersioning = "YES"
52+
debugServiceExtension = "internal"
53+
allowLocationSimulation = "YES">
54+
<BuildableProductRunnable
55+
runnableDebuggingMode = "0">
56+
<BuildableReference
57+
BuildableIdentifier = "primary"
58+
BlueprintIdentifier = "84361D261CA10F8E00F43825"
59+
BuildableName = "WeexUITestDemo.app"
60+
BlueprintName = "WeexUITestDemo"
61+
ReferencedContainer = "container:WeexDemo.xcodeproj">
62+
</BuildableReference>
63+
</BuildableProductRunnable>
64+
<AdditionalOptions>
65+
</AdditionalOptions>
66+
</LaunchAction>
67+
<ProfileAction
68+
buildConfiguration = "Release"
69+
shouldUseLaunchSchemeArgsEnv = "YES"
70+
savedToolIdentifier = ""
71+
useCustomWorkingDirectory = "NO"
72+
debugDocumentVersioning = "YES">
73+
<BuildableProductRunnable
74+
runnableDebuggingMode = "0">
75+
<BuildableReference
76+
BuildableIdentifier = "primary"
77+
BlueprintIdentifier = "84361D261CA10F8E00F43825"
78+
BuildableName = "WeexUITestDemo.app"
79+
BlueprintName = "WeexUITestDemo"
80+
ReferencedContainer = "container:WeexDemo.xcodeproj">
81+
</BuildableReference>
82+
</BuildableProductRunnable>
83+
</ProfileAction>
84+
<AnalyzeAction
85+
buildConfiguration = "Debug">
86+
</AnalyzeAction>
87+
<ArchiveAction
88+
buildConfiguration = "Release"
89+
revealArchiveInOrganizer = "YES">
90+
</ArchiveAction>
91+
</Scheme>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* Created by Weex.
3+
* Copyright (c) 2016, Alibaba, Inc. All rights reserved.
4+
*
5+
* This source code is licensed under the Apache Licence 2.0.
6+
* For the full copyright and license information,please view the LICENSE file in the root directory of this source tree.
7+
*/
8+
9+
#import <UIKit/UIKit.h>
10+
11+
12+
@interface AppDelegate : UIResponder <UIApplicationDelegate,UIAlertViewDelegate>
13+
14+
@property (strong, nonatomic) UIWindow *window;
15+
@property (strong, nonatomic) NSString *latestVer;
16+
17+
@end

0 commit comments

Comments
 (0)