各种坑


WINDOWS


    1、平台下读取ini文件使用GetPrivateProfileString时,如果ini文件有BOM则会读取失败


ANDROID

  

    1、使用android studio在android5.0版本下启动app出现java.lang.ClassNotFoundException MyApplication。

          此情况一般在使用了自定义的application才会出现 在自定义的application类中实现单利方法getInstance 在 application的onCreate方法中为单利的私有静态变量赋值。


    2、使用android studio在android5.0版本下启动app出现UnsatisfiedLinkError: dlopen failed: cannot locate symbol “strtof” referenced by “libsupportjni.so”。

          Run -> Edit Configurations -> Profiling, and disable "Enable advanced profiling".

         

你可能感兴趣的:(各种坑)