Skip to content

Commit

Permalink
MI | refactoring package and class #6
Browse files Browse the repository at this point in the history
Signed-off-by: mib-iqbal <[email protected]>
  • Loading branch information
mib-iqbal committed Nov 8, 2017
1 parent 2a1d306 commit 7c4c867
Show file tree
Hide file tree
Showing 27 changed files with 1,902 additions and 38 deletions.
2 changes: 1 addition & 1 deletion opensrp-gizi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ android {
multiDexEnabled true
buildConfigField "long", "MAX_SERVER_TIME_DIFFERENCE", "1800000l"
buildConfigField "boolean", "TIME_CHECK", "false"
resValue "string", 'opensrp_url', '"http://46.101.51.199:8181/opensrp"'
resValue "string", 'opensrp_url', '"http://192.168.1.253:8080/opensrp"'
}

dexOptions {
Expand Down
14 changes: 7 additions & 7 deletions opensrp-gizi/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
android:value="b74c58c94d8965151212e8ecf1f4fdfbf5b7f4e4" />

<activity
android:name=".LoginActivity"
android:name=".activity.LoginActivity"
android:theme="@android:style/Theme.Holo"
android:windowSoftInputMode="adjustResize|stateHidden"
android:screenOrientation="landscape"
Expand All @@ -31,25 +31,25 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".GiziHomeActivity"
<activity android:name=".activity.GiziHomeActivity"
android:theme="@style/AppTheme"
android:screenOrientation="landscape"/>
<activity android:name=".child.GiziSmartRegisterActivity"
<activity android:name=".activity.GiziSmartRegisterActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@style/AppThemeNoActionBarAndTitle"
android:windowSoftInputMode="adjustResize"
android:screenOrientation="landscape"/>
<activity android:name=".child.GiziDetailActivity"
<activity android:name=".activity.GiziDetailActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@style/AppThemeNoActionBarAndTitle"
android:windowSoftInputMode="adjustResize"
android:screenOrientation="landscape"/>
<activity android:name=".child.GiziGrowthChartActivity"
<activity android:name=".activity.GiziGrowthChartActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@style/AppThemeNoActionBarAndTitle"
android:windowSoftInputMode="adjustResize"
android:screenOrientation="landscape"/>
<activity android:name=".child.GiziZScoreChartActivity"
<activity android:name=".activity.GiziZScoreChartActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@style/AppThemeNoActionBarAndTitle"
android:windowSoftInputMode="adjustResize"
Expand All @@ -60,7 +60,7 @@
android:windowSoftInputMode="adjustResize"
android:screenOrientation="landscape"/>
-->
<activity android:name=".SettingsActivity" android:label="@string/action_settings"/>
<activity android:name=".activity.SettingsActivity" android:label="@string/action_settings"/>
<!-- <activity android:name=".face.camera.SmartShutterActivity" android:noHistory="true" />
<activity android:name=".face.camera.ImageConfirmation" android:noHistory="true" />
Expand Down
Loading

0 comments on commit 7c4c867

Please sign in to comment.