Recently I changed my adView's size from BANNER to SMART_BANNER. And had Samsung user's complain about strange font size for entire app.
As we know Samsung provides convenient way to change font size for sustem, so the bug is that during first activity creation font is different from settings in OS, but after just a rotation it comes to needed values.
Also it somehow related with release version or minifying, because in debug it works fine, but after Build > Build signed APK it shows up
android {
compileSdkVersion 23
buildToolsVersion '25.0.3'
defaultConfig {
applicationId "..."
minSdkVersion 15
targetSdkVersion 23
versionCode 110
versionName "..."
}
buildTypes {
release {
minifyEnabled true
// proguardFiles getDefaultProguardFile('proguard-android_amazon.txt')
proguardFiles 'proguard-android_amazon.txt'
signingConfig signingConfigs.config
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:23.0.3'
compile 'com.facebook.android:facebook-android-sdk:4.20.0'
compile 'joda-time:joda-time:2.9.1'
compile 'org.java-websocket:Java-WebSocket:1.3.4'
compile files('libs/volley.jar')
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
compile 'com.mikhaellopez:circularimageview:3.0.2'
compile 'com.shamanland:xdroid-toaster:0.3.0'
compile 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
compile project(':SweetAlert')
compile 'org.greenrobot:eventbus:3.0.0'
compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
transitive = true;
}
compile 'com.github.medyo:fancybuttons:1.8.4'
//rest
compile 'com.squareup.retrofit2:retrofit:2.0.2'
compile 'com.squareup.retrofit2:converter-gson:2.0.2'
compile 'com.squareup.okhttp3:logging-interceptor:3.2.0'
compile 'com.google.code.gson:gson:2.7'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.google.firebase:firebase-ads:11.0.0'
compile(name:'unity-ads', ext:'aar')
compile 'com.google.ads.mediation:unity:2.1.0.0'
}
apply plugin: 'com.google.gms.google-services'