[android-developers] Re: Meta: Changes to new-user moderation policy

2016-09-01 Thread Jason Atwood
How easy is it to delete a spam account from the admin console? Single 
button click? If it's easy, I'll volunteer to be an admin just to help with 
the spam. If a few other people did this too I bet we could have it down to 
zero in no time.

On Wednesday, August 31, 2016 at 1:18:44 PM UTC-4, Streets Of Boston wrote:
>
> Please, make this group moderated again or figure something out to weed 
> out all the spam, rants and job-postings. 
>
> This group has been basically useless. 
> Finding actual questions to answer is near impossible.
> Posting your own question will get drowned out in a sea of spam a second 
> later.
>
> Thank you,
> --- Anton.
>
> On Monday, November 30, 2015 at 6:28:00 PM UTC-5, Trevor Johns wrote:
>>
>> *As of today, new members to this group are able to post immediately, 
>> without being subject to moderator approval.*
>>
>> Previously, posts from new members to this group would be held for 
>> moderation. However, with the addition of Stack Overflow and Google+ as 
>> popular discussion mediums, it's been difficult to find volunteer 
>> moderators. As a result, the moderation queue has been showing signs of 
>> neglect -- which means that new posts just aren't getting through.
>>
>> To address this, effective immediately, I've removed the moderation 
>> restriction for new members.
>>
>> While this means that some spam may get through, this is necessary in 
>> order to keep this group functioning properly going forward. If you do see 
>> spam, simply report it through the Google Groups web UI. (Click on "Report 
>> Abuse" next to the "Reply" button.) For larger/urgent issues, you can also 
>> contact the group owners via email: 
>> https://groups.google.com/forum/#!contactowner/android-developers
>>
>> -- 
>> Trevor Johns
>> Google Developer Programs, Android
>> http://developer.android.com
>>
>

-- 
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 android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/0e27c1a0-b710-4cdf-aea3-be48bd50b85a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] I'm getting a ClassNotFoundException from play services lib when using Proguard

2016-08-22 Thread Jason Atwood
I just turned on ProGuard on my build and now I'm getting a 

java.lang.ClassNotFoundException: Didn't find class 
"com.google.android.gms.chimera.GmsModuleInitializer" on path: 
DexPathList[[zip file 
"/system/app/PlayGames.apk"],nativeLibraryDirectories=[/vendor/lib, 
/system/lib]]


If I understand from the docs all that I need to use Proguard with Play 
Services should be included by the Android Gradle plugin:

*Note: ProGuard directives are included in the Play services client 
libraries to preserve the required classes. The Android Plugin for Gradle 
 
automatically appends ProGuard configuration files in an AAR (Android 
ARchive) package and appends that package to your ProGuard configuration. 
During project creation, Android Studio automatically creates the ProGuard 
configuration files and build.gradle properties for ProGuard use. To use 
ProGuard with Android Studio, you must enable the ProGuard setting in your 
build.gradle buildTypes. For more information, see the ProGuard 
 guide.*

This the important part of my app module build.gradle file:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
...
}
...
buildTypes {
release {
signingConfig signingConfigs.releaseConfig
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
qa {
signingConfig signingConfigs.releaseConfig
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
debug {
applicationIdSuffix ".debug"
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}


dependencies {
...

//google play services
compile 'com.google.android.gms:play-services-gcm:8.4.0'
compile 'com.google.android.gms:play-services-analytics:8.4.0'
compile 'com.google.android.gms:play-services-location:8.4.0'
}



This is my top level build.gradle file:


// Top-level build file where you can add configuration options common to all 
sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
}
}

allprojects {
repositories {
jcenter()
mavenCentral()
}
}


What am I missing?

-- 
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 android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/5a7dbbf9-602a-43a3-ac6a-cfa9b7d1fecb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.