Skip to content

Commit

Permalink
修改配置信息
Browse files Browse the repository at this point in the history
  • Loading branch information
wujunyang committed May 25, 2017
1 parent 8cac09b commit 9017716
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
4 changes: 2 additions & 2 deletions JiaCordova.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
34FD29C61ED2AABF00230BE3 /* JiaYTKNetworkPrivate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JiaYTKNetworkPrivate.m; sourceTree = "<group>"; };
34FD29C71ED2AABF00230BE3 /* JiaYTKRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JiaYTKRequest.h; sourceTree = "<group>"; };
34FD29C81ED2AABF00230BE3 /* JiaYTKRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JiaYTKRequest.m; sourceTree = "<group>"; };
34FD29D31ED2D98000230BE3 /* JiaCordova.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JiaCordova.h; sourceTree = "<group>"; };
34FD29D31ED2D98000230BE3 /* JiaCordovaHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JiaCordovaHeader.h; sourceTree = "<group>"; };
34FD29D41ED2E03D00230BE3 /* JiaCordovaFileManage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JiaCordovaFileManage.h; sourceTree = "<group>"; };
34FD29D51ED2E03D00230BE3 /* JiaCordovaFileManage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JiaCordovaFileManage.m; sourceTree = "<group>"; };
34FD29D71ED2E29500230BE3 /* JiaCordovaViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JiaCordovaViewController.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -338,7 +338,7 @@
34FD29D21ED2D93C00230BE3 /* JiaCordovaManager */ = {
isa = PBXGroup;
children = (
34FD29D31ED2D98000230BE3 /* JiaCordova.h */,
34FD29D31ED2D98000230BE3 /* JiaCordovaHeader.h */,
34FD29D41ED2E03D00230BE3 /* JiaCordovaFileManage.h */,
34FD29D51ED2E03D00230BE3 /* JiaCordovaFileManage.m */,
34FD29D71ED2E29500230BE3 /* JiaCordovaViewController.h */,
Expand Down
2 changes: 1 addition & 1 deletion JiaCordova/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

#import "AppDelegate.h"
#import "JiaCordova.h"
#import "JiaCordovaHeader.h"

@interface AppDelegate ()

Expand Down
1 change: 0 additions & 1 deletion JiaCordova/DataViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
//

#import <UIKit/UIKit.h>
#import "JiaCordova.h"

@interface DataViewController : UIViewController

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
// Copyright © 2017年 wujunyang. All rights reserved.
//

#ifndef JiaCordova_h
#define JiaCordova_h
#ifndef JiaCordovaHeader_h
#define JiaCordovaHeader_h

#import "JiaCordovaSandBoxHelper.h"
#import "JiaCordovaFileManage.h"
Expand Down
2 changes: 1 addition & 1 deletion JiaCordova/JiaCordovaManager/JiaCordovaViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2017年 wujunyang. All rights reserved.
//

#import "CDV.h"
#import <CDV.h>

@interface JiaCordovaViewController : CDVViewController

Expand Down
2 changes: 1 addition & 1 deletion JiaCordova/TestCordovaViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

#import <UIKit/UIKit.h>
#import "JiaCordova.h"
#import "JiaCordovaHeader.h"

@interface TestCordovaViewController : JiaCordovaViewController

Expand Down
8 changes: 7 additions & 1 deletion jiaCordova.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Pod::Spec.new do |s|

s.name = "JiaCordova"
s.version = "0.2"
s.version = "0.3.1"
s.summary = "在Cordova及插件的基础上封装一些常用的功能"

s.homepage = "https://github.com/wujunyang/JiaCordova"
Expand Down Expand Up @@ -41,10 +41,16 @@ end

s.subspec 'JiaCordovaPlugin' do |ss|
ss.source_files = 'JiaCordova/JiaCordovaPlugin/**/*.{h,m}'
ss.dependency 'Cordova'
end

s.subspec 'JiaCordovaManager' do |ss|
ss.source_files = 'JiaCordova/JiaCordovaManager/**/*.{h,m}'
ss.dependency 'JiaCordova/JiaAFNetworking'
ss.dependency 'JiaCordova/JiaNetwork'
ss.dependency 'JiaCordova/JiaMBProgressHUD'
ss.dependency 'JiaCordova/JiaCordovaPlugin'
ss.dependency 'Cordova'
ss.dependency 'SSZipArchive'
end

Expand Down

0 comments on commit 9017716

Please sign in to comment.