Giphy android sdk returns 没有发布版本的数据
Giphy android sdk returns no data on release build
giphy docs 中用于获取趋势 gif 的示例代码是
/// Trending Gifs
client.trending(MediaType.gif, null, null, null, new
CompletionHandler<ListMediaResponse>() {
@Override
public void onComplete(ListMediaResponse result, Throwable e) {
if (result == null) {
// Do what you want to do with the error
} else {
if (result.getData() != null) { //Problem on release build
for (Media gif : result.getData()) {
Log.v("giphy", gif.getId());
}
} else {
Log.e("giphy error", "No results found");
}
}
}
});
此代码在开发环境中运行良好。但在发布版本中 result.getData()
总是 returns null
。无法弄清楚是什么问题。我也尝试过使用 giphy 的生产密钥,但没有成功。
需要为 giphy 添加 proguard 规则
-keepclassmembernames class com.giphy.sdk.core.models.** { *; }
-keepclassmembernames class com.giphy.sdk.core.network.response.** { *; }
-keepattributes *Annotation*
-dontwarn com.giphy.sdk.core.**
giphy docs 中用于获取趋势 gif 的示例代码是
/// Trending Gifs
client.trending(MediaType.gif, null, null, null, new
CompletionHandler<ListMediaResponse>() {
@Override
public void onComplete(ListMediaResponse result, Throwable e) {
if (result == null) {
// Do what you want to do with the error
} else {
if (result.getData() != null) { //Problem on release build
for (Media gif : result.getData()) {
Log.v("giphy", gif.getId());
}
} else {
Log.e("giphy error", "No results found");
}
}
}
});
此代码在开发环境中运行良好。但在发布版本中 result.getData()
总是 returns null
。无法弄清楚是什么问题。我也尝试过使用 giphy 的生产密钥,但没有成功。
需要为 giphy 添加 proguard 规则
-keepclassmembernames class com.giphy.sdk.core.models.** { *; }
-keepclassmembernames class com.giphy.sdk.core.network.response.** { *; }
-keepattributes *Annotation*
-dontwarn com.giphy.sdk.core.**