Skip to content

Commit

Permalink
最新Version:【Version:2.3.7】
Browse files Browse the repository at this point in the history
  • Loading branch information
boai committed Nov 20, 2017
1 parent e085f71 commit adab281
Show file tree
Hide file tree
Showing 17 changed files with 714 additions and 482 deletions.
2 changes: 1 addition & 1 deletion BANetManager.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "BANetManager"
s.version = "2.3.6"
s.version = "2.3.7"
s.summary = '基于AFNetworking 3.x 最新版本的封装,集成了get/post 方法请求数据,单图/多图上传,视频上传/下载,网络监测 等多种网络请求方式.'
s.homepage = "https://github.com/boai/BANetManager.git"
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
32 changes: 30 additions & 2 deletions BANetManager.xcodeproj/project.pbxproj
Expand Up @@ -8,6 +8,9 @@

/* Begin PBXBuildFile section */
C401ED061F1DA0FB0001AD40 /* postdynamic.php in Resources */ = {isa = PBXBuildFile; fileRef = C401ED051F1DA0FB0001AD40 /* postdynamic.php */; };
C424BBB81FC267F9009B7F6C /* BAFileDataEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = C424BBB41FC267F9009B7F6C /* BAFileDataEntity.m */; };
C424BBB91FC267F9009B7F6C /* BAImageDataEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = C424BBB51FC267F9009B7F6C /* BAImageDataEntity.m */; };
C424BBBA1FC267F9009B7F6C /* BADataEntity.m in Sources */ = {isa = PBXBuildFile; fileRef = C424BBB61FC267F9009B7F6C /* BADataEntity.m */; };
C492313F1ED0431A00B61C37 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C492313E1ED0431A00B61C37 /* main.m */; };
C49231421ED0431A00B61C37 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C49231411ED0431A00B61C37 /* AppDelegate.m */; };
C492314A1ED0431A00B61C37 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C49231491ED0431A00B61C37 /* Assets.xcassets */; };
Expand All @@ -25,6 +28,13 @@
3A5CFBEBCCE88E55DFFA7211 /* Pods-BANetManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BANetManager.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BANetManager/Pods-BANetManager.debug.xcconfig"; sourceTree = "<group>"; };
8E8F4FEA979F0E81B0C453A4 /* libPods-BANetManager.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BANetManager.a"; sourceTree = BUILT_PRODUCTS_DIR; };
C401ED051F1DA0FB0001AD40 /* postdynamic.php */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.php; path = postdynamic.php; sourceTree = "<group>"; };
C424BBB01FC26407009B7F6C /* BANetManager_Version.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BANetManager_Version.h; sourceTree = "<group>"; };
C424BBB21FC267F9009B7F6C /* BAImageDataEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAImageDataEntity.h; sourceTree = "<group>"; };
C424BBB31FC267F9009B7F6C /* BADataEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BADataEntity.h; sourceTree = "<group>"; };
C424BBB41FC267F9009B7F6C /* BAFileDataEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAFileDataEntity.m; sourceTree = "<group>"; };
C424BBB51FC267F9009B7F6C /* BAImageDataEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BAImageDataEntity.m; sourceTree = "<group>"; };
C424BBB61FC267F9009B7F6C /* BADataEntity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BADataEntity.m; sourceTree = "<group>"; };
C424BBB71FC267F9009B7F6C /* BAFileDataEntity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BAFileDataEntity.h; sourceTree = "<group>"; };
C492313A1ED0431A00B61C37 /* BANetManager.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BANetManager.app; sourceTree = BUILT_PRODUCTS_DIR; };
C492313E1ED0431A00B61C37 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
C49231401ED0431A00B61C37 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -73,6 +83,19 @@
name = Frameworks;
sourceTree = "<group>";
};
C424BBB11FC267F9009B7F6C /* BAParameterEntity */ = {
isa = PBXGroup;
children = (
C424BBB31FC267F9009B7F6C /* BADataEntity.h */,
C424BBB61FC267F9009B7F6C /* BADataEntity.m */,
C424BBB71FC267F9009B7F6C /* BAFileDataEntity.h */,
C424BBB41FC267F9009B7F6C /* BAFileDataEntity.m */,
C424BBB21FC267F9009B7F6C /* BAImageDataEntity.h */,
C424BBB51FC267F9009B7F6C /* BAImageDataEntity.m */,
);
path = BAParameterEntity;
sourceTree = "<group>";
};
C49231311ED0431A00B61C37 = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -120,13 +143,15 @@
C49231541ED0434300B61C37 /* BANetManager */ = {
isa = PBXGroup;
children = (
C424BBB11FC267F9009B7F6C /* BAParameterEntity */,
C498ACDB1F1CAC06006C93BC /* BANetManager_OC.h */,
C49231551ED0435400B61C37 /* BANetManager.h */,
C49231561ED0435400B61C37 /* BANetManager.m */,
C49231571ED0435400B61C37 /* BANetManagerCache.h */,
C49231581ED0435400B61C37 /* BANetManagerCache.m */,
C492315A1ED0435400B61C37 /* UIImage+CompressImage.h */,
C492315B1ED0435400B61C37 /* UIImage+CompressImage.m */,
C424BBB01FC26407009B7F6C /* BANetManager_Version.h */,
);
path = BANetManager;
sourceTree = "<group>";
Expand Down Expand Up @@ -256,7 +281,10 @@
buildActionMask = 2147483647;
files = (
C492316E1ED26D0F00B61C37 /* ViewController.m in Sources */,
C424BBB81FC267F9009B7F6C /* BAFileDataEntity.m in Sources */,
C424BBBA1FC267F9009B7F6C /* BADataEntity.m in Sources */,
C49231421ED0431A00B61C37 /* AppDelegate.m in Sources */,
C424BBB91FC267F9009B7F6C /* BAImageDataEntity.m in Sources */,
C492315C1ED0435400B61C37 /* BANetManager.m in Sources */,
C492315D1ED0435400B61C37 /* BANetManagerCache.m in Sources */,
C492313F1ED0431A00B61C37 /* main.m in Sources */,
Expand Down Expand Up @@ -383,7 +411,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = JB3QR65942;
INFOPLIST_FILE = BANetManager/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.boaihome.BANetManagerxinhuamm;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -397,7 +425,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = JB3QR65942;
INFOPLIST_FILE = BANetManager/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.boaihome.BANetManagerxinhuamm;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
Expand Up @@ -26,6 +26,7 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
</Testables>
Expand All @@ -45,6 +46,7 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
Expand Down Expand Up @@ -85,7 +87,7 @@
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
buildConfiguration = "Debug"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
Binary file not shown.

0 comments on commit adab281

Please sign in to comment.