slastowski / EucWorldAndroid

EUC World for Android
GNU General Public License v3.0
19 stars 7 forks source link

Can't compile #1

Open S-Bartfast opened 4 years ago

S-Bartfast commented 4 years ago

Not sure if this is the best place to ask but I am attempting to have a go at (possibly) contributing to this project however I seem to be having trouble getting the project to compile. In particular I am having issues with the "fliclib" library: Could not resolve project :fliclib.

After cloning the source and updating Android Studio as best I could my project structure looks like this: image Notably there are no files in either the "fliclib" or the "wear" folders.

I see they are mentioned in the 'app's gradle.properties file:

    implementation project(path: ':fliclib')
    implementation project(path: ':common')
    implementation project(path: ':seekbarpreference')
    wearApp project(':wear')

Are these meant to be added as Git sub-modules or something?

slastowski commented 4 years ago

I didn't included fliclib (Flic button library) in my repo because it's already available at https://github.com/50ButtonsEach/fliclib-android; just follow https://partners.flic.io/partners/developers/android-tutorial. I just wanted to prevent linking with external library that could become obsolete at some moment.

You can also remove

wearApp project(':wear')

as this is reference to separate Wear OS companion app project. It's here only because of the way Android Studio builds companion apps for Google Play distribution along main phone app.