| 
				
			 | 
			
			
				@@ -72,6 +72,17 @@ 
			 | 
		
	
		
			
			| 
				72
			 | 
			
				72
			 | 
			
			
				 	} 
			 | 
		
	
		
			
			| 
				73
			 | 
			
				73
			 | 
			
			
				 	``` 
			 | 
		
	
		
			
			| 
				74
			 | 
			
				74
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				
			 | 
			
				75
			 | 
			
			
				+	Also, add the following 
			 | 
		
	
		
			
			| 
				
			 | 
			
				76
			 | 
			
			
				+ 
			 | 
		
	
		
			
			| 
				
			 | 
			
				77
			 | 
			
			
				+   ```java 
			 | 
		
	
		
			
			| 
				
			 | 
			
				78
			 | 
			
			
				+   @Override 
			 | 
		
	
		
			
			| 
				
			 | 
			
				79
			 | 
			
			
				+   public String getJSMainModuleName() { 
			 | 
		
	
		
			
			| 
				
			 | 
			
				80
			 | 
			
			
				+   	return "index"; 
			 | 
		
	
		
			
			| 
				
			 | 
			
				81
			 | 
			
			
				+   } 
			 | 
		
	
		
			
			| 
				
			 | 
			
				82
			 | 
			
			
				+   ``` 
			 | 
		
	
		
			
			| 
				
			 | 
			
				83
			 | 
			
			
				+ 
			 | 
		
	
		
			
			| 
				
			 | 
			
				84
			 | 
			
			
				+   if you are using `index.js` as your entry point instead of `index.ios.js` and `index.android.js` (it is the default since React Native 0.49). 
			 | 
		
	
		
			
			| 
				
			 | 
			
				85
			 | 
			
			
				+ 
			 | 
		
	
		
			
			| 
				75
			 | 
			
				86
			 | 
			
			
				 	Make sure that `isDebug` and `createAdditionalReactPackages` methods are implemented. 
			 | 
		
	
		
			
			| 
				76
			 | 
			
				87
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				77
			 | 
			
				88
			 | 
			
			
				 6. Update `AndroidManifest.xml` and set **android:name** value to `.MainApplication` 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -81,4 +92,3 @@ 
			 | 
		
	
		
			
			| 
				81
			 | 
			
				92
			 | 
			
			
				 		... 
			 | 
		
	
		
			
			| 
				82
			 | 
			
				93
			 | 
			
			
				 	/> 
			 | 
		
	
		
			
			| 
				83
			 | 
			
				94
			 | 
			
			
				 	``` 
			 | 
		
	
		
			
			| 
				84
			 | 
			
				
			 | 
			
			
				- 
			 |