Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Design Android App for Samsung Edge Panel with Android Studio

The Samsung Note Edge has few applications just for the edge panel on the right, But I am trying to create a project from Android Studio, Anyone has any idea how to begin. I only see options for Wearables, Google glass, TV, Phones and Tablets.

I got the SDK http://developer.samsung.com/samsung-mobile#look But I am not sure how it should be integrated to start an Application.

I know that questions asked w/o what is being tried is a bad thing, but I have looked all over the internet not much articles.

like image 567
joyBlanks Avatar asked Oct 17 '25 18:10

joyBlanks


1 Answers

When you unzip the Samsung Look SDK, you should find some .jar files in a folder called libs. Copy those to your app's libs directory (which Android Studio automatically creates) and they should be picked up by your gradle build. If not, check that you have this to your build.gradle file:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    // other dependencies here ...
}
like image 66
Karakuri Avatar answered Oct 19 '25 10:10

Karakuri