如何在Android中使用applicationIdSuffix时设置Facebook应用程序

时间:2017-05-03 09:25:04

标签: android facebook facebook-apps facebook-authentication

我正在尝试设置developers.facebook.com,以便我的用户可以使用Facebook登录。我有一个问题,因为在我的build.grade文件中我也使用applicationIdSuffix,如下所示。

enter image description here

我在上图中如何输入包名称,因为我使用applicationIdSuffix这样。我的意思是我应该保持像com.toy.android.debug这样的“调试”以及上面com.toy.android.ui.ActivityMain中的活动如何,我应该添加像com.toy.android.debug.ui.ActivityMain这样的“debug”吗? / p>

buildTypes {
    debug {
        debuggable true
        minifyEnabled true
        signingConfig signingConfigs.debug
        applicationIdSuffix '.debug'
        versionNameSuffix '-debug'
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

    }
    release {
        debuggable false
        minifyEnabled true
        shrinkResources true
        applicationIdSuffix '.production'
        signingConfig signingConfigs.release
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

    }
}

此设置适用于调试版本,我现在也可以在同一设备上安装和运行生产版本,这非常方便,但我可以为我的“生产”版本创建另一个Facebook应用程序吗?我猜,但必须问对了。 我还能期待什么蛀牙?

0 个答案:

没有答案