I am a old developer with Eclipse IDE now I switched to Android Studio. I want to use the below tutorial
I want to import the libstreaming library to Android Studio.
I am a old developer with Eclipse IDE now I switched to Android Studio. I want to use the below tutorial
I want to import the libstreaming library to Android Studio.
With the help of Fritte's comment on this page, I did the following to import libstreaming into my Android Studio (v1.5.1) project:
libstreaming
into an other directoryPath to libstreaming
You can then add libstreaming as a dependency in your app by adding compile project(':libstreaming')
to the dependencies section of your build.gradle (Module:app) file. E.g., mine now looks like this:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile project(':libstreaming')
}