-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from Tealium/rnpm-migrate
Migrate off of rnpm
- Loading branch information
Showing
105 changed files
with
963 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
344 changes: 344 additions & 0 deletions
344
TealiumSampleApp/android/app/src/main/assets/index.android.bundle
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
TealiumSampleApp/android/gradle/wrapper/gradle-wrapper.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
rootProject.name = 'TealiumSampleApp' | ||
include ':tealium-react-native' | ||
project(':tealium-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/tealium-react-native/android') | ||
include ':tealium-react-native' | ||
project(':tealium-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/tealium-react-native/android') | ||
|
||
include ':app' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
TealiumSampleApp/ios/TealiumIOS.framework/Headers/TEALVisitorProfileAudienceAttribute.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// TEALVisitorProfileAudienceAttribute.h | ||
// Tealium Mobile Library | ||
// | ||
// Created by George Webster on 6/8/15. | ||
// Copyright (c) 2015 Tealium Inc. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
#import "TEALVisitorProfileBaseAttribute.h" | ||
|
||
@interface TEALVisitorProfileAudienceAttribute : TEALVisitorProfileBaseAttribute <NSCoding, NSCopying, NSSecureCoding> | ||
|
||
/** | ||
* Name of the Audience, this is a display name, all attributes are refenerenced by their unique attributeID | ||
* | ||
* @return string of the human friendly name or nil. | ||
*/ | ||
- (NSString *)name; | ||
|
||
@end |
23 changes: 23 additions & 0 deletions
23
TealiumSampleApp/ios/TealiumIOS.framework/Headers/TEALVisitorProfileBadgeAttribute.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// TEALVisitorProfileBadgeAttribute.h | ||
// Tealium Mobile Library | ||
// | ||
// Created by George Webster on 6/8/15. | ||
// Copyright (c) 2015 Tealium Inc. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
#import "TEALVisitorProfileBaseAttribute.h" | ||
|
||
@interface TEALVisitorProfileBadgeAttribute : TEALVisitorProfileBaseAttribute <NSCoding, NSCopying> | ||
|
||
/** | ||
* Name of the Audience, this is a display name, all attributes are refenerenced by their unique attributeID | ||
* | ||
* @return string of the human friendly name or nil. | ||
*/ | ||
- (NSString *)name; | ||
|
||
@end | ||
|
77 changes: 77 additions & 0 deletions
77
TealiumSampleApp/ios/TealiumIOS.framework/Headers/TEALVisitorProfileBaseAttribute.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// | ||
// TEALVisitorProfileAttribute.h | ||
// Tealium Mobile Library | ||
// | ||
// Created by George Webster on 2/4/15. | ||
// Copyright (c) 2015 Tealium Inc. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
/** | ||
* Type of Visitor Profile Attribute | ||
*/ | ||
typedef NS_ENUM(NSInteger, TEALVisitorProfileAttributeType) { | ||
/** | ||
* Profile Audience | ||
*/ | ||
TEALVisitorProfileAttributeTypeAudience, | ||
/** | ||
* Profile Badge | ||
*/ | ||
TEALVisitorProfileAttributeTypeBadge, | ||
/** | ||
* Profile Date | ||
*/ | ||
TEALVisitorProfileAttributeTypeDate, | ||
/** | ||
* Profile Flag | ||
*/ | ||
TEALVisitorProfileAttributeTypeFlag, | ||
/** | ||
* Profile Metric | ||
*/ | ||
TEALVisitorProfileAttributeTypeMetric, | ||
/** | ||
* Profile Property or "Trait" in the AudienceStream App | ||
*/ | ||
TEALVisitorProfileAttributeTypeProperty | ||
}; | ||
|
||
@interface TEALVisitorProfileBaseAttribute : NSObject <NSCoding> | ||
|
||
/** | ||
* Constructor method. | ||
* | ||
* @param type Type of TEALVisitorProfileAttributeType that this base attribute | ||
* should be. | ||
*/ | ||
- (instancetype)initWithType:(TEALVisitorProfileAttributeType)type; | ||
|
||
/** | ||
* Compares relavent properties of two attributes for equality | ||
* | ||
* @param object Any NSObject, only TEALVisitorProfileBaseAttribute subclasses can return a true result. | ||
* | ||
* @return boolean of true if relavent values are equal, regardles of object hashing or non relavant properties. | ||
*/ | ||
- (BOOL)isEqualAttribute:(id)object; | ||
|
||
/** | ||
* ID of the attribute | ||
* | ||
* @return string value of the attribute's ID | ||
*/ | ||
- (NSString *)attributeID; | ||
|
||
/** | ||
* Type of attribute | ||
* | ||
* @return valid TEALVisitorProfileAttributeType type | ||
*/ | ||
- (TEALVisitorProfileAttributeType)type; | ||
|
||
@end | ||
|
||
|
||
|
Oops, something went wrong.