Skip to content

Commit

Permalink
FEM-2502 AndroidX migration (#25)
Browse files Browse the repository at this point in the history
* - AndroidX migration
  • Loading branch information
GouravSna authored and giladna committed Jul 15, 2019
1 parent 4d1c392 commit a19e255
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions youboraplugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
targetSdkVersion 28
versionName libVersion

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

}

Expand All @@ -29,13 +29,13 @@ dependencies {

//TODO change to latest playkit version after tagging.
implementation 'com.kaltura:playkit-android:dev-SNAPSHOT'
//implementation project(":playkit");
//implementation project(":playkit")

api 'com.npaw.youbora:youboralib:6.3.5'

testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
implementation 'com.android.support:support-annotations:28.0.0'
androidTestImplementation 'androidx.test:runner:1.1.1'
implementation 'androidx.annotation:annotation:1.0.2'

}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package com.kaltura.playkit.plugins.youbora.pluginconfig;

import android.os.Bundle;
import android.support.annotation.NonNull;
import android.text.TextUtils;

import androidx.annotation.NonNull;

import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;
import com.npaw.youbora.lib6.plugin.Options;
Expand Down

0 comments on commit a19e255

Please sign in to comment.