Feature/prepare publish (#2)

* add doric-js bundle into vcs

* android project read js bundle directly

* update iOS project config

* update version
This commit is contained in:
osborn
2019-12-23 15:29:38 +08:00
committed by GitHub
parent 6f6a3792dc
commit 25ba991893
21 changed files with 7335 additions and 40 deletions

28
DoricCore.podspec Normal file
View File

@@ -0,0 +1,28 @@
Pod::Spec.new do |s|
s.name = 'DoricCore'
s.version = '0.2.0'
s.summary = 'Doric iOS SDK'
s.description = <<-DESC
Doric iOS SDK for cross platform develpment
DESC
s.homepage = 'https://github.com/doric-pub/doric'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.author = { 'pengfei.zhou' => 'pengfeizhou@foxmail.com' }
s.source = { :git => 'https://github.com/doric-pub/doric.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'doric-iOS/Pod/Classes/**/*'
s.resource_bundles = {
'Doric' => ['doric-js/bundle/**/*']
}
s.public_header_files = 'doric-iOS/Pod/Classes/**/*.h'
s.dependency 'YYWebImage', '~>1.0.5'
s.dependency 'YYImage/WebP'
s.dependency 'SocketRocket', '~> 0.5.1'
s.dependency 'YYCache', '~> 1.0.4'
end