Skip to content

Commit

Permalink
Ready for Version 1.0.02
Browse files Browse the repository at this point in the history
  • Loading branch information
sockeqwe committed Apr 4, 2015
1 parent 80ce3da commit 9e7646c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public abstract class MosbyFragment extends Fragment {
+ "If you don't want to use getLayoutRes() but implement your own view for this "
+ "fragment manually, then you have to override onCreateView();");
} else {
View v = inflater.inflate(getLayoutRes(), container, false);
View v = inflater.inflate(layoutRes, container, false);
return v;
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=0.9.3-ICEPICK-SNAPSHOT
VERSION_NAME=1.0.0
VERSION_CODE=10
GROUP=com.hannesdorfmann.mosby

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public class MainActivity extends MosbyActivity implements AdapterView.OnItemCli

private Demo[] createDemos() {
return new Demo[] {
new Demo("MvpLceActivity", new Intent(this, CountriesActivity.class)),
new Demo("MvpLceFragment",
new Demo("Simple LceActivity", new Intent(this, CountriesActivity.class)),
new Demo("Simple LceFragment",
new Intent(this, FragmentContainerActivity.class).putExtra("fragment",
"CountriesFragment")), new Demo("RetainingViewsState LceFragment",
new Intent(this, FragmentContainerActivity.class).putExtra("fragment",
Expand Down
2 changes: 1 addition & 1 deletion sample/src/main/res/layout/loading_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

<ProgressBar
android:id="@+id/loadingView"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminate="true"
/>

</merge>

0 comments on commit 9e7646c

Please sign in to comment.