mobilist / dining-out

Automatically exported from code.google.com/p/dining-out
GNU General Public License v3.0
0 stars 0 forks source link

Import of project in android studio #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. i tried to import the project in android studio with android version 4.4 by 
selection menifest.xml

What is the expected result? What happens instead?
expected : the project should be imported with out any error
instead : the project contains dependencies error

What version of the app are you using?
1.4.0

Please provide any additional information below.

Original issue reported on code.google.com by ashishka...@gmail.com on 3 Feb 2015 at 3:58

Attachments:

GoogleCodeExporter commented 9 years ago
Here are the dependencies that you can add to build.gradle.

    compile 'net.sf.sprockets:sprockets-android:2.1.0'
    compile 'com.squareup.retrofit:retrofit:1.9.0'
    compile 'in.srain.cube:grid-view-with-header-footer:1.0.9'
    compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
    compile 'com.github.castorflex.smoothprogressbar:library:1.0.0'
    compile 'com.cocosw:undobar:1.7.1'
    compile 'com.github.amlcurran.showcaseview:library:5.0.0'
    compile 'commons-dbutils:commons-dbutils:1.6'

Note that user log in and the Google Maps view will not work when you build the 
app with your own signing key.  The client ID used to get a user token and the 
included Maps API key are tied to my private signing key.  The source code 
provided here is primarily for review.

Original comment by pushbit on 4 Feb 2015 at 10:16

GoogleCodeExporter commented 9 years ago
Also, the Google Places and Street View API calls require an API key.  This can 
be provided by following step #5 below.

https://github.com/pushbit/sprockets/tree/master/android#install

There are also ProGuard issues when building.  In addition to 
sprockets-rules.pro (step #2 above), you would also need the below rules.

# retrofit
-dontwarn com.google.appengine.api.**
-dontwarn rx.**
-keep class retrofit.http.** { *; }

Sorry, but building and running this app is rather complicated. :)

Original comment by pushbit on 4 Feb 2015 at 10:33