Ok, that's related to Google Services API. Not sure if you found it, but there's an issue open for that: https://code.google.com/p/analytics-issues/issues/detail?id=733
No fix, but there are workarounds in the comments. I think it would help to add your error there. On Thu, Oct 22, 2015 at 5:22 AM, Daniele Segato <[email protected]> wrote: > Nope, that's not the right place too. > > https://code.google.com/p/android/issues/detail?id=189782 > > quoting: > > "Sorry, this tracker is for issues with the Android OS only. Please use > https://support.google.com/ to obtain support for Google products or > services." > > > of course the support link have no trace of any bug tracker for app > invision / play services or anything that look like it. > > > > On Wednesday, October 21, 2015 at 11:15:10 PM UTC+2, Gus wrote: >> >> This is a group for Android app developers (using the SDK, not developing >> it). You can ask if anyone here has found the same problem and how to work >> around it. >> >> Now if you want to file a bug report, the right place to do it is >> https://code.google.com/p/android/issues >> >> Cheers, >> Gus >> >> On Wed, Oct 21, 2015 at 11:13 AM, Daniele Segato <[email protected]> >> wrote: >> >>> This is a bug report. Couldn't find a better place to file this too, if >>> you have a reference to the right forum/bug tracking I'll happily use it. >>> >>> I wanted to try out Google AppInvites beta. >>> >>> Not sure if this is a tool (gradle) bug or a Google Play Service bug. >>> >>> I followed the steps here: >>> https://developers.google.com/app-invites/android/guides/app >>> >>> When I launch my release build lint fail with a MissingTranslation on a >>> generated values string file >>> >>> The two strings causing the issue are: >>> >>> <resources> >>> <string name="gcm_defaultSenderId">[censured]</string> >>> <string name="google_app_id">[censured]</string> >>> </resources> >>> >>> >>> :app:lintVitalRelease >>> <string name="gcm_defaultSenderId">[censured]</string> >>> ~~~~~~~~~~~~~~~~~~~~~~~~~~ >>> >>> [censured]/app/build/generated/res/google-services/release/values/values.xml >>> Error:(3) Error: "gcm_defaultSenderId" is not translated in "it" >>> (Italian) [MissingTranslation] >>> Error:(4) Error: "google_app_id" is not translated in "it" (Italian) >>> [MissingTranslation] >>> <string name="google_app_id">[censured]</string> >>> ~~~~~~~~~~~~~~~~~~~~ >>> Explanation for issues of type "MissingTranslation": >>> If an application has more than one locale, then all the strings >>> declared >>> in one language should also be translated in all other languages. >>> If the string should not be translated, you can add the attribute >>> translatable="false" on the <string> element, or you can define all >>> your >>> non-translatable strings in a resource file called >>> donottranslate.xml. Or, >>> you can ignore the issue with a tools:ignore="MissingTranslation" >>> attribute. >>> By default this detector allows regions of a language to just provide >>> a >>> subset of the strings and fall back to the standard language strings. >>> You >>> can require all regions to provide a full translation by setting the >>> environment variable ANDROID_LINT_COMPLETE_REGIONS. >>> You can tell lint (and other tools) which language is the default >>> language >>> in your res/values/ folder by specifying tools:locale="languageCode" >>> for >>> the root <resources> element in your resource file. (The tools prefix >>> refers to the namespace declaration http://schemas.android.com/tools >>> .) >>> 2 errors, 0 warnings >>> >>> >>> In my build.gradle file I've set: >>> >>> resConfigs "it" >>> >>> The only way I found to build for release has been to set >>> >>> lintOptions { >>> // google services plugin is causing missing translation issue >>> abortOnError false >>> } >>> >>> still pretty annoying. >>> >>> Please makes this bug report reach the right persons in Google or tell >>> me how I can reach them properly. >>> >>> regards, >>> Daniele >>> >> -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Android Developers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

