Skip to content

Commit

Permalink
Add Singular kit
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Dozor authored and samdozor committed Aug 14, 2017
1 parent e65bc50 commit 7922ea6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,6 @@
[submodule "kits/skyhook-kit"]
path = kits/skyhook-kit
url = git@github.com:mparticle-integrations/mparticle-android-integration-skyhook.git
[submodule "kits/singular-kit"]
path = kits/singular-kit
url = git@github.com:mparticle-integrations/mparticle-android-integration-singular.git
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Kit | Maven Artifact
[Tune](https://github.com/mparticle-integrations/mparticle-android-integration-tune) | [`android-tune-kit`](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.mparticle%22%20AND%20a%3A%22android-tune-kit%22)
[Urban Airship](https://github.com/mparticle-integrations/mparticle-android-integration-urbanairship) | [`android-urbanairship-kit`](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.mparticle%22%20AND%20a%3A%22android-urbanairship-kit%22)
[Wootric](https://github.com/mparticle-integrations/mparticle-android-integration-wootric) | [`android-wootric-kit`](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.mparticle%22%20AND%20a%3A%22android-wootric-kit%22)
[Singular](https://github.com/mparticle-integrations/mparticle-android-integration-singular) | [`android-singular-kit`](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.mparticle%22%20AND%20a%3A%22android-singular-kit%22)
[Skyhook](https://github.com/mparticle-integrations/mparticle-android-integration-skyhook) | [`android-skyhook-kit`](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.mparticle%22%20AND%20a%3A%22android-skyhook-kit%22)


Expand Down
1 change: 1 addition & 0 deletions android-core/src/main/java/com/mparticle/MParticle.java
Original file line number Diff line number Diff line change
Expand Up @@ -1767,6 +1767,7 @@ public interface ServiceProviders {
int RADAR = 117;
int ITERABLE = 1003;
int SKYHOOK = 121;
int SINGULAR = 119;
String BROADCAST_ACTIVE = "MPARTICLE_SERVICE_PROVIDER_ACTIVE_";
String BROADCAST_DISABLED = "MPARTICLE_SERVICE_PROVIDER_DISABLED_";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ protected Map<Integer, String> getKnownIntegrations() {
kits.put(MParticle.ServiceProviders.RADAR, "com.mparticle.kits.RadarKit");
kits.put(MParticle.ServiceProviders.ITERABLE, "com.mparticle.kits.IterableKit");
kits.put(MParticle.ServiceProviders.SKYHOOK, "com.mparticle.kits.SkyhookKit");
kits.put(MParticle.ServiceProviders.SINGULAR, "com.mparticle.kits.SingularKit");
return kits;
}

Expand Down
1 change: 1 addition & 0 deletions kits/singular-kit
Submodule singular-kit added at a3fbf6
3 changes: 2 additions & 1 deletion settings-kits.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ include (
':kits:revealmobile-kit',
':kits:radar-kit',
':kits:iterable-kit',
':kits:skyhook-kit'
':kits:skyhook-kit',
':kits:singular-kit'
)
project(':kits').getChildren().each {
proj -> proj.name = 'android-' + proj.name
Expand Down

0 comments on commit 7922ea6

Please sign in to comment.