https://github.com/wingify/vwo-android-snapshot
Snapshot repository for Android VWO SDK.
https://github.com/wingify/vwo-android-snapshot
ab-testing android-sdk maven-repository mobile-testing snapshot vwo
Last synced: 4 months ago
JSON representation
Snapshot repository for Android VWO SDK.
- Host: GitHub
- URL: https://github.com/wingify/vwo-android-snapshot
- Owner: wingify
- Created: 2017-09-26T14:03:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-16T09:04:30.000Z (over 7 years ago)
- Last Synced: 2025-01-08T18:45:01.327Z (5 months ago)
- Topics: ab-testing, android-sdk, maven-repository, mobile-testing, snapshot, vwo
- Size: 2.37 MB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VWO ANDROID SNAPSHOT REPOSITORY
Snapshot repository for Android VWO SDK.## Requirements
* Android 4.0 (API 14) or later
## Credentials
This SDK requires an app key. You can sign up for an account at [VWO](https://vwo.com).
Once there, you can add a new Android App, and use the generated app key in the app.## Setting up VWO account
* Sign Up for VWO account at https://vwo.com
* Create a new android app from create menu
* Use the app generated app key, while integrating SDK into android app.
* Create and run campaigns.## How to import in gradle:
In your top level build.gradle file add the following code under repositories.buildscript {
...
repositories {
...
}
}allprojects {
repositories {
...
maven {
url 'https://raw.githubusercontent.com/wingify/vwo-android-snapshot/master/'
}
...
}
}Add dependencies to app/build.gradle file
dependencies {
...
compile 'com.vwo:mobile:2.0.0-SNAPSHOT'
// Add this library to debug compile mode only.
debugCompile ('io.socket:socket.io-client:1.0.0') {
// excluding org.json which is provided by Android
exclude group: 'org.json', module: 'json'
}
compile 'io.sentry:sentry-android:1.4.0'// Skip this if you are already including support library in your app.
compile 'com.android.support:support-core-utils:26.1.0'
...
}