2016-05-28 8 views
0

プロジェクトにfirebaseを実装する際に問題に直面しています。単純な連絡先ピッカーも実装後に作業を停止しました。接触ピックボタンをクリックすると、長く続く黒い画面が表示され、どこにも行かなくなります。唯一の方法は、アプリケーションを閉じることです。FIREbaseが接触ピッカーを実行して黒い画面を表示しています

Inサンプルの問題が2回発生しています。私のメインプロジェクトで毎回発生しています。

下記のソーススニペットをご覧ください。

MainActivity.java

package apps.uvr.com.apppoc; 

    import android.content.Intent; 
    import android.provider.ContactsContract; 
    import android.support.v7.app.AppCompatActivity; 
    import android.os.Bundle; 
    import android.util.Log; 
    import android.view.View; 

    public class MainActivity extends AppCompatActivity { 

     @Override 
     protected void onCreate(Bundle savedInstanceState) { 
      super.onCreate(savedInstanceState); 
      setContentView(R.layout.activity_main); 
      findViewById(R.id.button1).setOnClickListener(new View.OnClickListener() { 
       @Override 
       public void onClick(View v) { 
        Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); 
        startActivityForResult(intent, 1011); 
       } 
      }); 

     Bundle bundle = new Bundle(); 
     bundle.putString("EVent", state); 
     AppController.mFirebaseAnalytics.logEvent("APP_EVENT", bundle); 
     } 

     @Override 
     protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
      super.onActivityResult(requestCode, resultCode, data); 
      Log.d("MainActivity","onActivityResult"); 
     } 
    } 

activity_main.xml

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    tools:context="apps.uvr.com.apppoc.MainActivity"> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Hello World!" 
     android:id="@+id/textView" /> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Test Contact" 
     android:id="@+id/button1" 
     android:layout_below="@+id/textView" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentStart="false" /> 
</RelativeLayout> 

build.gradle

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "24.0.0 rc2" 

    defaultConfig { 
     applicationId "apps.uvr.com.apppoc" 
     minSdkVersion 15 
     targetSdkVersion 23 
     versionCode 1 
     versionName "1.0" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:23.3.0' 
    compile 'com.github.michaelye.easydialog:easydialog:1.4' 


    compile 'com.google.android.gms:play-services:9.0.0' 
    compile 'com.google.firebase:firebase-core:9.0.0' 
    compile 'com.google.firebase:firebase-analytics:9.0.0' 
    compile 'com.google.firebase:firebase-crash:9.0.0' 
    compile 'com.google.firebase:firebase-messaging:9.0.0' 
} 
apply plugin: 'com.google.gms.google-services' 
+0

Firebaseはこれとは関係ありません! –

+0

ファイヤーベースがないとうまく動いています – Pavandroid

+0

他のクラスのコードを投稿してください –

答えて

0

Iヘクタール同じ問題を抱えている。それはfirebaseに関連しているのではなく、プレイサービス:9.x.xと関連しているようです。

以下も同じ症状のようです。 MultiDex api 19 cause freeze on Camera Intent onActivityResult not called

+0

解決策は何ですか? – Pavandroid

+0

firebaseなしでシームレスに動作している – Pavandroid

+0

私の場合、ソリューションは9.xから8.xまでのプレイサービスのダウングレードだけでした。私はまだ9.xだけで動作しているので、firebaseを使用する解決策を見つけることを試みています。 – Yongjae

関連する問題