NoClassDefFoundError: android/support/v4/content/LocalBroadcastManager

前端 未结 7 1703
甜味超标
甜味超标 2020-12-18 17:37
  • Platform: MonoDroid v4.2.4
  • IDE: Visual Studio 2012
  • Minimum SDK version: API 12

I\'m having runtime issues when trying to utilize th

7条回答
  •  温柔的废话
    2020-12-18 17:48

    If you have proguard enabled, try adding

    # Local Broadcast Manager
    -keep public class android.support.v4.content.LocalBroadcastManager
    

    This fixed it for me.

提交回复
热议问题