Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
0f2b4a0e
Commit
0f2b4a0e
authored
Jun 10, 2015
by
Thomas Van Lenten
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update podspec for files that can build now, rename assets to not need @ in the name.
parent
686db5c3
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
17 deletions
+16
-17
Makefile.am
Makefile.am
+5
-5
Protobuf.podspec
Protobuf.podspec
+5
-5
Contents.json
...tHarness/Images.xcassets/AppIcon.appiconset/Contents.json
+6
-7
iPad6_2x.png
...stHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.png
+0
-0
iPad7_2x.png
...stHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.png
+0
-0
iPhone6_2x.png
...Harness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.png
+0
-0
iPhone7_2x.png
...Harness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.png
+0
-0
iPhone7_3x.png
...Harness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.png
+0
-0
No files found.
Makefile.am
View file @
0f2b4a0e
...
...
@@ -579,13 +579,13 @@ objectivec_EXTRA_DIST= \
objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6
@
2x.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6
_
2x.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7
@
2x.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7
_
2x.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6
@
2x.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7
@
2x.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7
@
3x.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6
_
2x.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7
_
2x.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7
_
3x.png
\
objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json
\
objectivec/Tests/iOSTestHarness/Info.plist
\
objectivec/Tests/iOSTestHarness/LaunchScreen.xib
\
...
...
Protobuf.podspec
View file @
0f2b4a0e
...
...
@@ -13,23 +13,23 @@ Pod::Spec.new do |s|
s
.
source_files
=
'objectivec/*.{h,m}'
,
'objectivec/google/protobuf/Any.pbobjc.{h,m}'
,
'objectivec/google/protobuf/Api.pbobjc.{h,m}'
,
'objectivec/google/protobuf/Descriptor.pbobjc.{h,m}'
,
'objectivec/google/protobuf/Duration.pbobjc.h'
,
'objectivec/google/protobuf/Empty.pbobjc.{h,m}'
,
'objectivec/google/protobuf/FieldMask.pbobjc.{h,m}'
,
'objectivec/google/protobuf/SourceContext.pbobjc.{h,m}'
,
'objectivec/google/protobuf/Struct.pbobjc.{h,m}'
,
'objectivec/google/protobuf/Timestamp.pbobjc.h'
,
'objectivec/google/protobuf/Type.pbobjc.{h,m}'
'objectivec/google/protobuf/Wrappers.pbobjc.{h,m}'
# Timestamp.pbobjc.m and Duration.pbobjc.m are #imported by GPBWellKnownTypes.m. So we can't
# compile them (duplicate symbols), but we need them available for the importing:
s
.
preserve_paths
=
'objectivec/google/protobuf/Duration.pbobjc.m'
,
'objectivec/google/protobuf/Timestamp.pbobjc.m'
# The following would cause duplicate symbol definitions. GPBProtocolBuffers is expected to be
# left out, as it's an umbrella implementation file. For Api, Struct and Type, see issue #449.
s
.
exclude_files
=
'objectivec/GPBProtocolBuffers.m'
,
'objectivec/google/protobuf/Api.pbobjc.{h,m}'
,
'objectivec/google/protobuf/Struct.pbobjc.{h,m}'
,
'objectivec/google/protobuf/Type.pbobjc.{h,m}'
# left out, as it's an umbrella implementation file.
s
.
exclude_files
=
'objectivec/GPBProtocolBuffers.m'
s
.
header_mappings_dir
=
'objectivec'
s
.
ios
.
deployment_target
=
'6.0'
...
...
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json
View file @
0f2b4a0e
...
...
@@ -34,19 +34,19 @@
{
"size"
:
"57x57"
,
"idiom"
:
"iphone"
,
"filename"
:
"iPhone6
@
2x.png"
,
"filename"
:
"iPhone6
_
2x.png"
,
"scale"
:
"2x"
},
{
"size"
:
"60x60"
,
"idiom"
:
"iphone"
,
"filename"
:
"iPhone7
@
2x.png"
,
"filename"
:
"iPhone7
_
2x.png"
,
"scale"
:
"2x"
},
{
"size"
:
"60x60"
,
"idiom"
:
"iphone"
,
"filename"
:
"iPhone7
@
3x.png"
,
"filename"
:
"iPhone7
_
3x.png"
,
"scale"
:
"3x"
},
{
...
...
@@ -88,7 +88,7 @@
{
"size"
:
"72x72"
,
"idiom"
:
"ipad"
,
"filename"
:
"iPad6
@
2x.png"
,
"filename"
:
"iPad6
_
2x.png"
,
"scale"
:
"2x"
},
{
...
...
@@ -100,7 +100,7 @@
{
"size"
:
"76x76"
,
"idiom"
:
"ipad"
,
"filename"
:
"iPad7
@
2x.png"
,
"filename"
:
"iPad7
_
2x.png"
,
"scale"
:
"2x"
},
{
...
...
@@ -113,4 +113,4 @@
"version"
:
1
,
"author"
:
"xcode"
}
}
\ No newline at end of file
}
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6
@
2x.png
→
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6
_
2x.png
View file @
0f2b4a0e
File moved
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7
@
2x.png
→
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7
_
2x.png
View file @
0f2b4a0e
File moved
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6
@
2x.png
→
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6
_
2x.png
View file @
0f2b4a0e
File moved
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7
@
2x.png
→
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7
_
2x.png
View file @
0f2b4a0e
File moved
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7
@
3x.png
→
objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7
_
3x.png
View file @
0f2b4a0e
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment