Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Commit

Permalink
matched versioning, and removed commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
trinisofttechnologies committed Oct 30, 2018
1 parent b60d7da commit 4e7fecf
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 67 deletions.
21 changes: 0 additions & 21 deletions .versions

This file was deleted.

2 changes: 2 additions & 0 deletions Countly.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Countly.serverUrl = "";
Countly.appKey = "";
Countly.ready = false;
Countly.messagingMode = {"TEST":"1","PRODUCTION":"0"};
Countly.version = "18.08";

// countly initialization
Countly.init = function(serverUrl,appKey, deviceId){
var args = [];
Expand Down
24 changes: 12 additions & 12 deletions change.log
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
this.keys = new ArrayList<>();
this.keys = new ArrayList<byte[]>();
Developer release notes.

final List<Event> events = new ArrayList<>(array.length);
final List<Event> events = new ArrayList<Event>(array.length);
plugin.xml update version
package.json update version
package.js update version
Countly.js update version
create tag / release based on the same version
Sync Countly.js with ngCountly.js some angular customer depends on it.

final List<String> connections = new ArrayList<>(Arrays.asList(connections()));
connections.add(str);
final List<String> connections = new ArrayList<String>(Arrays.asList(connections()));
connections.add(str);
Updating index.html should also update ionic/home.html

final List<String> connections = new ArrayList<>(Arrays.asList(connections()));
final List<String> connections = new ArrayList<String>(Arrays.asList(connections()));
Making a new release on github, should also release on npm and meteor.

final List<String> strings = new ArrayList<>();
final List<String> strings = new ArrayList<String>();
Apply documentation to the sdk, for a newbie to understand.

Provide callback to the user instead of handling the callback manually.
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'countly:countly-sdk-js',
version: '0.0.3',
version: '18.08',
summary: 'Countly is an innovative, real-time, open source mobile analytics and push notifications platform.',
git: 'https://github.com/Countly/countly-sdk-js.git',
documentation: 'README.md'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "countly-sdk-js",
"description": "Analytics.",
"version": "1.1.0",
"version": "18.08",
"homepage": "https://github.com/Countly/countly-sdk-js#readme",
"repository": {
"type": "git",
Expand Down
36 changes: 4 additions & 32 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="ly.count.cordova"
version="0.0.1">
version="18.08">

<name>Countly</name>

<description>
Countly is an innovative, real-time, open source mobile analytics application. It collects data from mobile devices, and visualizes this information to analyze mobile application usage and end-user behavior. There are two parts of Countly: the server that collects and analyzes data, and mobile SDK that sends this data. Both parts are open source with different licensing terms.
</description>

<author>Nicolson Dsouza</author>
<author>Trinisoft Technologies Pvt. Ltd.</author>

<license>Open source with different licensing terms.</license>

Expand Down Expand Up @@ -58,8 +58,6 @@
<source-file src="src/ios/sdk/CountlyConsentManager.m" />
<header-file src="src/ios/sdk/CountlyCrashReporter.h"/>
<source-file src="src/ios/sdk/CountlyCrashReporter.m" />
<!-- <header-file src="src/ios/sdk/CountlyDB.h"/> -->
<!-- <source-file src="src/ios/sdk/CountlyDB.m" compiler-flags="-fno-objc-arc" /> -->
<header-file src="src/ios/sdk/CountlyDeviceInfo.h"/>
<source-file src="src/ios/sdk/CountlyDeviceInfo.m" />
<header-file src="src/ios/sdk/CountlyEvent.h"/>
Expand All @@ -78,13 +76,9 @@
<source-file src="src/ios/sdk/CountlyPushNotifications.m" />
<source-file src="src/ios/sdk/CountlyNotificationService.h" />
<source-file src="src/ios/sdk/CountlyNotificationService.m" />
<!-- <source-file src="src/ios/sdk/Countly.xcdatamodeld" custom="true"/> -->

<header-file src="src/ios/CountlyCordova.h"/>
<source-file src="src/ios/CountlyCordova.m"/>

<!-- <framework src="src/ios/sdk/Countly.xcdatamodeld"/> -->

<framework src="CoreTelephony.framework" weak="true" />
<framework src="OpenGLES.framework" weak="true" />
</platform>
Expand Down Expand Up @@ -114,19 +108,7 @@
</intent-filter>
</service>

<!-- push notification config -->
<!-- <receiver
android:name="ly.count.android.sdk.messaging.CountlyMessaging"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="ly.count.android.api" />
</intent-filter>
</receiver>
<service android:name="ly.count.android.sdk.messaging.CountlyMessagingService" >
<meta-data android:name="broadcast_action" android:value="ly.count.android.api.broadcast" />
</service> -->
<activity android:label="@string/app_name" android:name="ly.count.android.sdk.messaging.ProxyActivity" android:noHistory="true" android:theme="@android:style/Theme.Translucent" />
<activity android:label="@string/app_name" android:name="ly.count.android.sdk.messaging.ProxyActivity" android:noHistory="true" android:theme="@android:style/Theme.Translucent" />
</config-file>

<source-file src="src/android/CountlyCordova.java" target-dir="src/ly/count/android/sdk"/>
Expand All @@ -148,20 +130,10 @@
<source-file src="src/android/UserData.java" target-dir="src/ly/count/android/sdk"/>
<source-file src="src/android/CountlyStarRating.java" target-dir="src/ly/count/android/sdk"/>

<!-- push notification config -->
<!-- <source-file src="src/android/messaging/CountlyMessaging.java" target-dir="src/ly/count/android/sdk/messaging"/>
<source-file src="src/android/messaging/CountlyMessagingService.java" target-dir="src/ly/count/android/sdk/messaging"/>
<source-file src="src/android/messaging/Message.java" target-dir="src/ly/count/android/sdk/messaging"/>
<source-file src="src/android/messaging/ProxyActivity.java" target-dir="src/ly/count/android/sdk/messaging"/> -->


<source-file src="src/android/OpenUDID_manager.java" target-dir="src/org/openudid/"/>
<source-file src="src/android/OpenUDID_service.java" target-dir="src/org/openudid/"/>

<!-- <source-file src="src/android/libs/gcm.jar" target-dir="libs/" />
<source-file src="src/android/libs/android-support-v13.jar" target-dir="libs/" />
<source-file src="src/android/libs/google-play-services.jar" target-dir="libs/" />
<source-file src="src/android/libs/play-services-gcm.jar" target-dir="libs/" /> -->

<source-file src="src/android/gradle/build-extras.gradle" target-dir="src/.." />
</platform>

Expand Down

0 comments on commit 4e7fecf

Please sign in to comment.