Skip to content

Commit

Permalink
chore: move to SDK 8.2.0.GA
Browse files Browse the repository at this point in the history
  • Loading branch information
hansemannn committed Oct 3, 2019
1 parent 247b1a1 commit 052331a
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 12 deletions.
3 changes: 2 additions & 1 deletion Classes/TiGooglemapsIndoorDisplayProxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/
#import "TiProxy.h"

#import <TitaniumKit/TitaniumKit.h>
#import <GoogleMaps/GoogleMaps.h>

@interface TiGooglemapsIndoorDisplayProxy : TiProxy <GMSIndoorDisplayDelegate> {
Expand Down
4 changes: 2 additions & 2 deletions Classes/TiGooglemapsIndoorLevelProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ - (GMSIndoorLevel *_Nonnull)indoorLevel

- (NSString *_Nullable)name
{
return NULL_IF_NIL([_indoorLevel name]);
return [_indoorLevel name];
}

- (NSString *_Nullable)shortName
{
return NULL_IF_NIL([_indoorLevel shortName]);
return [_indoorLevel shortName];
}

@end
2 changes: 1 addition & 1 deletion Classes/TiGooglemapsTileProxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/
#import "TiProxy.h"
#import <TitaniumKit/TitaniumKit.h>
#import <GoogleMaps/GoogleMaps.h>

@interface TiGooglemapsTileProxy : TiProxy <GMSTileReceiver> {
Expand Down
1 change: 0 additions & 1 deletion Classes/TiGooglemapsTileProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
*/

#import "TiGooglemapsTileProxy.h"
#import "TiUtils.h"

@implementation TiGooglemapsTileProxy

Expand Down
2 changes: 1 addition & 1 deletion manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 5.0.0
version: 5.0.1
apiversion: 2
architectures: armv7 arm64 i386 x86_64
description: ti.googlemaps
Expand Down
2 changes: 2 additions & 0 deletions ti.googlemaps.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -976,6 +976,7 @@
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = NO;
CLANG_CXX_LIBRARY = "compiler-default";
CLANG_ENABLE_MODULES = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
Expand Down Expand Up @@ -1049,6 +1050,7 @@
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = NO;
CLANG_CXX_LIBRARY = "compiler-default";
CLANG_ENABLE_MODULES = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict/>
<dict>
<key>BuildSystemType</key>
<string>Original</string>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>
9 changes: 4 additions & 5 deletions titanium.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
// OF YOUR TITANIUM SDK YOU'RE BUILDING FOR
//
//
TITANIUM_SDK_VERSION = 7.5.0.GA
TITANIUM_SDK_VERSION = 8.2.0.GA


//
// THESE SHOULD BE OK GENERALLY AS-IS
//
TITANIUM_SDK = ~/Library/Application Support/Titanium/mobilesdk/osx/$(TITANIUM_SDK_VERSION)
TITANIUM_BASE_SDK = "$(TITANIUM_SDK)/iphone/include"
TITANIUM_BASE_SDK2 = "$(TITANIUM_SDK)/iphone/include/TiCore"
HEADER_SEARCH_PATHS= $(TITANIUM_BASE_SDK) $(TITANIUM_BASE_SDK2)
TITANIUM_SDK = /Users/hans/Library/Application Support/Titanium/mobilesdk/osx/8.3.0
HEADER_SEARCH_PATHS = $(inherited) "$(TITANIUM_SDK)/iphone/include"
FRAMEWORK_SEARCH_PATHS = $(inherited) "$(TITANIUM_SDK)/iphone/Frameworks"

0 comments on commit 052331a

Please sign in to comment.