我正在尝试设置developers.facebook.com,以便我的用户可以使用Facebook登录。我有一个问题,因为在我的build.grade文件中我也使用applicationIdSuffix
,如下所示。
我在上图中如何输入包名称,因为我使用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应用程序吗?我猜,但必须问对了。 我还能期待什么蛀牙?