-
Notifications
You must be signed in to change notification settings - Fork 298
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 #28 from adeven/uuid
Add proprietary ID
- Loading branch information
Showing
16 changed files
with
157 additions
and
21 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,6 @@ | |
- (NSString *)aiUrlEncode; | ||
- (NSString *)aiRemoveColons; | ||
|
||
+ (NSString *)aiJoin:(NSString *)strings, ...; | ||
|
||
@end |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.1.4 | ||
2.2.0 |
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,44 @@ | ||
## Remove IDFA support | ||
|
||
If your app got rejected by Apple because your app is using the advertising | ||
identifier, this document is for you. | ||
|
||
1. Contact us at [support@adjust.io](mailto:support@adjust.io). We would like | ||
to make sure that you are aware of the consequences of removing IDFA | ||
support. | ||
|
||
2. After you talked with us, or when you just can't wait any longer, proceed | ||
with the following steps to remove the IDFA support. | ||
|
||
### Remove the AdSupport framework | ||
|
||
- In the Project Navigator select your project. Make sure your target is | ||
selected in the top left corner of the right hand window. | ||
|
||
- Select the `Build Phases` tab and expand the group `Link Binary with | ||
Libraries`. | ||
|
||
- Select the `AdSupport.framework` and press the `-` button to remove it. | ||
|
||
- In the Project Navigator, expand the group `Frameworks`. | ||
|
||
- If the `AdSupport.framework` is in there, right click it, select `Delete` and | ||
confirm `Remove Reference`. | ||
|
||
### Add the compiler flag `ADJUST_NO_IDFA` | ||
|
||
- In the Project Navigator select your project. Make sure your target is | ||
selected in the top left corner of the right hand window. | ||
|
||
- Select the `Build Settings` tab and search for `Other C Flags` in the search | ||
field below. | ||
|
||
- Double click on the right side of the `Other C Flags` line to change its | ||
value | ||
|
||
- Press on the `+` button at the bottom of the overlay and paste the following | ||
text into the selected line: | ||
|
||
``` | ||
-DADJUST_NO_IDFA | ||
``` |
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