https://github.com/segment-integrations/analytics-android-integration-adobe-analytics
The Adobe Analytics analytics-android integration.
https://github.com/segment-integrations/analytics-android-integration-adobe-analytics
Last synced: 1 day ago
JSON representation
The Adobe Analytics analytics-android integration.
- Host: GitHub
- URL: https://github.com/segment-integrations/analytics-android-integration-adobe-analytics
- Owner: segment-integrations
- Created: 2017-11-08T18:29:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-09-12T21:03:15.000Z (almost 4 years ago)
- Last Synced: 2025-10-18T11:16:13.771Z (8 months ago)
- Language: Java
- Homepage:
- Size: 540 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# ⚠️ End-of-Support Announcement for Analytics-Android Integrations ⚠️
Following the End-of-Support (EoS) for the core **Analytics-Android SDK** in **March 2026**, this legacy integration repository is also deprecated and will no longer receive updates.
Segment's future development efforts are concentrated on the new **Analytics-Kotlin** ecosystem.
* To migrate your core SDK, please see the [Analytics-Android to Analytics-Kotlin migration guide](https://segment.com/docs/connections/sources/catalog/libraries/mobile/kotlin-android/migration/).
* To find the modern Kotlin equivalent for this specific integration, check the [Analytics-Kotlin Destination Plugins list](https://github.com/segment-integrations?q=analytics-kotlin).
analytics-android-integration-adobe-analytics
=======================================
[](https://maven-badges.herokuapp.com/maven-central/com.segment.analytics.android.integrations/adobe-analytics)
[](http://javadoc-badge.appspot.com/com.segment.analytics.android.integrations/adobe-analytics)
Adobe Analytics integration for [analytics-android](https://github.com/segmentio/analytics-android).
## Installation
To install the Segment-Adobe Analytics integration, simply add this line to your gradle file:
```
compile 'com.segment.analytics.android.integrations:adobeanalytics:+'
```
## Usage
After adding the dependency, you must register the integration with our SDK. To do this, import the Adobe Analytics integration:
```
import com.segment.analytics.android.integrations.adobeanalytics.AdobeIntegration;
```
And add the following line:
```
analytics = new Analytics.Builder(this, "write_key")
.use(AdobeIntegration.FACTORY)
.build();
```
Please see [our documentation](https://segment.com/docs/destinations/adobe-analytics/) for more information.
## License
```
WWWWWW||WWWWWW
W W W||W W W
||
( OO )__________
/ | \
/o o| MIT \
\___/||_||__||_|| *
|| || || ||
_||_|| _||_||
(__|__|(__|__|
The MIT License (MIT)
Copyright (c) 2014 Segment, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```