2017-09-21 60 views
-2

I get this error occcure when I build sign apk don't know but when I build simple apk these error does not occur,plz help me resolve this.錯誤:(48,13)錯誤:表達式

PTAdChartboostBridge.s_activity.get) 
    { 

    PTAdChartboostBridge(new Runnable); 

     { 

      public void run(); 
      { 
       if (PTAdChartboostBridge.appId() == null || PTAdChartboostBridge.appSignature() == null) { 

        Chartboost.startWithAppId(PTAdChartboostBridge.activity, PTAdChartboostBridge.appId(), PTAdChartboostBridge.appSignature()); 
        Chartboost.setLoggingLevel(Level.ALL); 
        Chartboost.setDelegate(delegate); 
        Chartboost.onCreate(PTAdChartboostBridge.activity); 

        initComplete = true; 

        Chartboost.onStart(PTAdChartboostBridge.activity); 
        return; 
       } 

      } 

     } 

error is in this code plzz help??? 
+1

所以在線路48是一個錯誤,但是,這是否行號指的是在你的代碼片斷? – dr0i

回答

0

你沒有做非法的開始無論你是想。你的格式完全錯誤。 我建議你再次通過基礎知識。

然而正確的格式將如下

new Runnable() { 
    @Override 
    public void run() { 
     if (PTAdChartboostBridge.appId() == null || PTAdChartboostBridge.appSignature() == null) { 

      Chartboost.startWithAppId(PTAdChartboostBridge.activity, PTAdChartboostBridge.appId(), PTAdChartboostBridge.appSignature()); 
      Chartboost.setLoggingLevel(Level.ALL); 
      Chartboost.setDelegate(delegate); 
      Chartboost.onCreate(PTAdChartboostBridge.activity); 

      initComplete = true; 

      Chartboost.onStart(PTAdChartboostBridge.activity); 
      return; 
     } 
    } 
} 
+0

我在Android新的我不知道你能糾正我的更多的錯誤 –