Browse Source

fix compiling

Daniel Zlotin 8 years ago
parent
commit
04b1993b8b

+ 0
- 2
android/app/src/main/java/com/reactnativenavigation/controllers/NavigationActivity.java View File

4
 import android.content.Intent;
4
 import android.content.Intent;
5
 import android.os.Bundle;
5
 import android.os.Bundle;
6
 import android.support.v7.app.AppCompatActivity;
6
 import android.support.v7.app.AppCompatActivity;
7
-import android.util.Log;
8
 import android.view.KeyEvent;
7
 import android.view.KeyEvent;
9
 
8
 
10
 import com.facebook.react.modules.core.DefaultHardwareBackBtnHandler;
9
 import com.facebook.react.modules.core.DefaultHardwareBackBtnHandler;
45
 
44
 
46
     private void createLayout() {
45
     private void createLayout() {
47
         singleScreenLayout = new SingleScreenLayout(this, activityParams.screenParams);
46
         singleScreenLayout = new SingleScreenLayout(this, activityParams.screenParams);
48
-        singleScreenLayout.createLayout();
49
         setContentView(singleScreenLayout);
47
         setContentView(singleScreenLayout);
50
     }
48
     }
51
 
49