-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
6.2.40
- Loading branch information
Showing
132 changed files
with
1,749 additions
and
347 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.DS_Store | ||
|
||
# Generated by package manager | ||
node_modules/ | ||
|
||
# Generated by Cordova | ||
/plugins/ | ||
/platforms/ | ||
package-lock.json |
4 changes: 2 additions & 2 deletions
4
examples/demoC/config.xml → examples/cordova/config.xml
100755 → 100644
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "com.appsflyer.cordovaapp", | ||
"displayName": "AppsFlyerCordova", | ||
"version": "1.0.0", | ||
"description": "A sample Apache Cordova application that responds to the deviceready event.", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [ | ||
"ecosystem:cordova" | ||
], | ||
"author": "Apache Cordova Team", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"cordova-android": "^9.0.0", | ||
"cordova-ios": "^6.2.0", | ||
"cordova-plugin-whitelist": "^1.3.4" | ||
}, | ||
"cordova": { | ||
"plugins": { | ||
"cordova-plugin-whitelist": {} | ||
}, | ||
"platforms": [ | ||
"android", | ||
"ios" | ||
] | ||
}, | ||
"dependencies": {} | ||
} |
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
File renamed without changes
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,35 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Security-Policy" | ||
content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *"/> | ||
<meta name="format-detection" content="telephone=no"/> | ||
<meta name="msapplication-tap-highlight" content="no"/> | ||
<meta name="viewport" | ||
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width"/> | ||
<link rel="stylesheet" type="text/css" href="css/index.css"/> | ||
</head> | ||
<body> | ||
<div class="app"> | ||
<div id="deviceready"> | ||
<button id="logEvent">log Event</button> | ||
<button id="setCurrency">Set Currency</button> | ||
<button id="setUserId">Set App User Id</button> | ||
<button id="getUserId">Get AppsFlyer UID</button> | ||
<button id="getSdkV">Get SDK Version</button> | ||
<button id="logCrossPromotionAndOpenStore">log Cross Promotion And Open Store</button> | ||
<button id="customDomains">Test customDomains</button> | ||
<button id="enableFB">Test enabledFB</button> | ||
<button id="userEmails">Test serUserEmails</button> | ||
<button id="phone">Test serPhoneNumber</button> | ||
<button id="hosts">Test serHost (foo.bar)</button> | ||
<button id="path">Test addPushNotificationDeepLinkPath</button> | ||
|
||
</div> | ||
</div> | ||
<script type="text/javascript" src="cordova.js"></script> | ||
<script type="text/javascript" src="js/index.js"></script> | ||
<script type="text/javascript" src="js/appsflyer.js"></script> | ||
<script type="text/javascript" src="js/buttons.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.