GoogleCloudPlatform / gradle-appengine-templates

Freemarker based templates that build with the gradle-appengine-plugin
438 stars 205 forks source link

Hit the maximum method limit #55

Open LamKanSing opened 9 years ago

LamKanSing commented 9 years ago

The play services library is too big that hit the maximum method limit, I suggest make change below.

from : dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile project(path: ':gcmbackend', configuration: 'android-endpoints') compile 'com.google.android.gms:play-services:7.8.0' }

To: dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile project(path: ':gcmbackend', configuration: 'android-endpoints') compile 'com.google.android.gms:play-services-gcm:7.8.0' }

loosebazooka commented 9 years ago

I wonder if this affects the play services checks that people usually do before making gcm calls.

rahul20dec commented 8 years ago

Thank u so much LamKanSing...... u r awesome