-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pushwoosh ANE 6.1.4
- Loading branch information
Showing
16 changed files
with
721 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
20 changes: 20 additions & 0 deletions
20
PushNotificationsSample/AdobeAirPushwooshSample.app.dSYM/Contents/Info.plist
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,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.apple.xcode.dsym.AdobeAirPushwooshSample.app</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundlePackageType</key> | ||
<string>dSYM</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleVersion</key> | ||
<string>1</string> | ||
</dict> | ||
</plist> |
Binary file added
BIN
+4.22 MB
...mple/AdobeAirPushwooshSample.app.dSYM/Contents/Resources/DWARF/aot8218140574053639545.tmp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,32 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project name="project" default="default"> | ||
<!-- Config --> | ||
<property environment="env" /> | ||
|
||
<property file="build.config"/> | ||
<property name="flex.sdk" value="${env.PW_AIR_SAMPLE_FLEX_SDK}" /> | ||
<property name="android.sdk" value="${env.PW_AIR_ANDROID_PLATFORM}" /> | ||
<property name="ios.sdkversion" value="${env.PW_AIR_IOS_SDK_VERSION}" /> | ||
<property name="FLEX_HOME" value="${env.PW_AIR_SAMPLE_FLEX_SDK}" /> | ||
|
||
<target name="default"> | ||
<taskdef resource="flexTasks.tasks" classpath="lib/flexTasks.jar"/> | ||
|
||
<mxmlc file="${basedir}/src/TestPushNotifications.as" | ||
output="${basedir}/TestPushNotifications.swf"> | ||
<load-config filename="config-opts.txt" /> | ||
</mxmlc> | ||
|
||
<exec executable="${flex.sdk}/bin/adt${bin.ext}" failonerror="true" dir="."> | ||
<arg value="-package"/> | ||
<arg value="-target"/> | ||
<arg value="apk-debug"/> | ||
<arg line="-arch x64"/> | ||
<arg line="-storetype JKS -keystore ../../build/certs/pushwoosh_keystore.keystore -storepass 123qwe -alias pushwoosh -keypass 123qwe"/> | ||
<arg value="${name}.apk"/> | ||
<arg line="src/TestPushNotifications-app.xml TestPushNotifications.swf assets/icon_48.png assets/icon_72.png assets/icon_144.png google-services.json -extdir ../ANE-Pushwoosh -extdir ../ANE-Distriqt" /> | ||
</exec> | ||
|
||
</target> | ||
</project> |
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,56 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project name="project" default="default"> | ||
<!-- Config --> | ||
<property environment="env" /> | ||
|
||
<property file="build.config"/> | ||
<property name="flex.sdk" value="${env.PW_AIR_SAMPLE_FLEX_SDK}" /> | ||
<property name="android.sdk" value="${env.PW_AIR_ANDROID_PLATFORM}" /> | ||
<property name="ios.sdkversion" value="${env.PW_AIR_IOS_SDK_VERSION}" /> | ||
<property name="ios.platformsdk" value="${env.PW_AIR_IOS_PLATFORM_SDK}" /> | ||
<property name="ios.simulator.platformsdk" value="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk" /> | ||
<property name="FLEX_HOME" value="${env.PW_AIR_SAMPLE_FLEX_SDK}" /> | ||
|
||
|
||
<target name="default"> | ||
<taskdef resource="flexTasks.tasks" classpath="lib/flexTasks.jar"/> | ||
|
||
<mxmlc file="${basedir}/src/TestPushNotifications.as" | ||
output="${basedir}/TestPushNotifications.swf"> | ||
<load-config filename="config-opts.txt" /> | ||
</mxmlc> | ||
|
||
<exec executable="${flex.sdk}/bin/adt${bin.ext}" failonerror="true" dir="."> | ||
<arg value="-package"/> | ||
<arg value="-target"/> | ||
<arg value="ipa-debug-interpreter-simulator"/> | ||
<arg line="-storetype pkcs12 -keystore Certificates.p12 -storepass password"/> | ||
<arg value="TestPushNotifications.ipa"/> | ||
<arg value="src/TestPushNotifications-app.xml"/> | ||
<arg value="TestPushNotifications.swf"/> | ||
<arg value="-platformsdk"/> | ||
<arg value="${ios.simulator.platformsdk}"/> | ||
<arg value="-extdir"/> | ||
<arg value="../ANE-Pushwoosh"/> | ||
<arg value="-extdir"/> | ||
<arg value="../ANE-Distriqt"/> | ||
<arg line="assets/icon_48.png assets/icon_57.png assets/icon_72.png assets/icon_114.png assets/icon_144.png" /> | ||
</exec> | ||
|
||
|
||
<exec executable="${flex.sdk}/bin/adt${bin.ext}" failonerror="true" dir="."> | ||
<arg value="-installApp"/> | ||
<arg value="-platform"/> | ||
<arg value="ios"/> | ||
<arg value="-platformsdk"/> | ||
<arg value="${ios.simulator.platformsdk}"/> | ||
<arg value="-device"/> | ||
<arg value="ios-simulator"/> | ||
<arg value="-package"/> | ||
<arg value="TestPushNotifications.ipa"/> | ||
|
||
</exec> | ||
</target> | ||
|
||
</project> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
{ | ||
"project_info": { | ||
"project_number": "562785984945", | ||
"firebase_url": "https://testingapp-94c5a.firebaseio.com", | ||
"project_id": "testingapp-94c5a", | ||
"storage_bucket": "testingapp-94c5a.appspot.com" | ||
}, | ||
"client": [ | ||
{ | ||
"client_info": { | ||
"mobilesdk_app_id": "1:562785984945:android:fed89dfc6dabe5e6", | ||
"android_client_info": { | ||
"package_name": "air.com.pushwoosh.demoapp" | ||
} | ||
}, | ||
"oauth_client": [ | ||
{ | ||
"client_id": "562785984945-09ceb4pltgsqemm9dfi686gbucjbq1ep.apps.googleusercontent.com", | ||
"client_type": 3 | ||
} | ||
], | ||
"api_key": [ | ||
{ | ||
"current_key": "AIzaSyC7wdtiDH7-p19KZm3I22_aqr6chE0B8Ic" | ||
} | ||
], | ||
"services": { | ||
"analytics_service": { | ||
"status": 1 | ||
}, | ||
"appinvite_service": { | ||
"status": 1, | ||
"other_platform_oauth_client": [] | ||
}, | ||
"ads_service": { | ||
"status": 2 | ||
} | ||
} | ||
}, | ||
{ | ||
"client_info": { | ||
"mobilesdk_app_id": "1:562785984945:android:eaacc8127f129907", | ||
"android_client_info": { | ||
"package_name": "com.pushwoosh.demoapp" | ||
} | ||
}, | ||
"oauth_client": [ | ||
{ | ||
"client_id": "562785984945-09ceb4pltgsqemm9dfi686gbucjbq1ep.apps.googleusercontent.com", | ||
"client_type": 3 | ||
} | ||
], | ||
"api_key": [ | ||
{ | ||
"current_key": "AIzaSyC7wdtiDH7-p19KZm3I22_aqr6chE0B8Ic" | ||
} | ||
], | ||
"services": { | ||
"analytics_service": { | ||
"status": 1 | ||
}, | ||
"appinvite_service": { | ||
"status": 1, | ||
"other_platform_oauth_client": [] | ||
}, | ||
"ads_service": { | ||
"status": 2 | ||
} | ||
} | ||
}, | ||
{ | ||
"client_info": { | ||
"mobilesdk_app_id": "1:562785984945:android:dfdd182231d4a10c", | ||
"android_client_info": { | ||
"package_name": "com.pushwoosh.testingapp" | ||
} | ||
}, | ||
"oauth_client": [ | ||
{ | ||
"client_id": "562785984945-09ceb4pltgsqemm9dfi686gbucjbq1ep.apps.googleusercontent.com", | ||
"client_type": 3 | ||
} | ||
], | ||
"api_key": [ | ||
{ | ||
"current_key": "AIzaSyC7wdtiDH7-p19KZm3I22_aqr6chE0B8Ic" | ||
} | ||
], | ||
"services": { | ||
"analytics_service": { | ||
"status": 1 | ||
}, | ||
"appinvite_service": { | ||
"status": 1, | ||
"other_platform_oauth_client": [] | ||
}, | ||
"ads_service": { | ||
"status": 2 | ||
} | ||
} | ||
}, | ||
{ | ||
"client_info": { | ||
"mobilesdk_app_id": "1:562785984945:android:1551b3436b663f72", | ||
"android_client_info": { | ||
"package_name": "com.pushwooshsample" | ||
} | ||
}, | ||
"oauth_client": [ | ||
{ | ||
"client_id": "562785984945-09ceb4pltgsqemm9dfi686gbucjbq1ep.apps.googleusercontent.com", | ||
"client_type": 3 | ||
} | ||
], | ||
"api_key": [ | ||
{ | ||
"current_key": "AIzaSyC7wdtiDH7-p19KZm3I22_aqr6chE0B8Ic" | ||
} | ||
], | ||
"services": { | ||
"analytics_service": { | ||
"status": 1 | ||
}, | ||
"appinvite_service": { | ||
"status": 1, | ||
"other_platform_oauth_client": [] | ||
}, | ||
"ads_service": { | ||
"status": 2 | ||
} | ||
} | ||
}, | ||
{ | ||
"client_info": { | ||
"mobilesdk_app_id": "1:562785984945:android:706d0c5aabffd7a7", | ||
"android_client_info": { | ||
"package_name": "io.trigger.forge.android.inspector" | ||
} | ||
}, | ||
"oauth_client": [ | ||
{ | ||
"client_id": "562785984945-09ceb4pltgsqemm9dfi686gbucjbq1ep.apps.googleusercontent.com", | ||
"client_type": 3 | ||
} | ||
], | ||
"api_key": [ | ||
{ | ||
"current_key": "AIzaSyC7wdtiDH7-p19KZm3I22_aqr6chE0B8Ic" | ||
} | ||
], | ||
"services": { | ||
"analytics_service": { | ||
"status": 1 | ||
}, | ||
"appinvite_service": { | ||
"status": 1, | ||
"other_platform_oauth_client": [] | ||
}, | ||
"ads_service": { | ||
"status": 2 | ||
} | ||
} | ||
} | ||
], | ||
"configuration_version": "1" | ||
} |
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.
Binary file not shown.