Skip to content

Commit

Permalink
Merge pull request #32 from THEOplayer/feature/uplynk-publishing
Browse files Browse the repository at this point in the history
add uplynk publishing
  • Loading branch information
hovig-theo authored Sep 4, 2024
2 parents a968556 + 98643ee commit 06fd35f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ For more details about importing THEOplayer Android SDK check the [documentation

| Connector | Dependency | Supported From | Documentation |
|:-------------|:-----------------|:--------------:|:--------------------------------------------------------:|
| Uplynk | `uplynk:+` | 8.0.0 | [documentation](connectors/uplynk/README.md) |
| Comscore | `comscore:+` | 6.10.0 | [documentation](connectors/analytics/comscore/README.md) |
| Conviva | `conviva:+` | 4.1.0 | [documentation](connectors/analytics/conviva/README.md) |
| Nielsen | `nielsen:+` | 5.5.0 | [documentation](connectors/analytics/nielsen/README.md) |
Expand Down
9 changes: 6 additions & 3 deletions connectors/uplynk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
id 'org.jetbrains.kotlin.plugin.serialization'
id 'org.jetbrains.dokka'
}
apply from: "$rootDir/connectors/publish.gradle"

android {
namespace 'com.theoplayer.android.connector.uplynk'
Expand All @@ -24,27 +25,29 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = '1.8'
}
}

dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3"
compileOnly "com.theoplayer.theoplayer-sdk-android:core:$sdkVersion"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
testImplementation "com.theoplayer.theoplayer-sdk-android:core:$sdkVersion"
testImplementation "org.mockito:mockito-inline:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:1.8.10"
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}

tasks.withType(AbstractDokkaLeafTask.class).configureEach {
Expand Down

0 comments on commit 06fd35f

Please sign in to comment.