-
-
Notifications
You must be signed in to change notification settings - Fork 495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dev -> main #1040
Merged
dev -> main #1040
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
55565f4
Update expandable example with new payload feature
Ceees2 506a0b9
Remove obsolete imports
Ceees2 e584c6e
- simplify payload handling
mikepenz ba22c34
Merge branch 'Ceees2-improve_expand_example' into developt push origi…
mikepenz a22635b
Bump git from 1.8.1 to 1.11.0
dependabot[bot] 506783d
Merge pull request #1031 from mikepenz/dependabot/bundler/git-1.11.0
mikepenz 1093928
The presence of placeholders isn't something to warn about at every s…
RobbWatershed c65ee4e
Merge pull request #1035 from RobbWatershed/develop
mikepenz b6a7dab
- fix crash if the `itemFilter` `FilterResults` contains `null` values
mikepenz af93790
- update Danger Gemfile.lock
mikepenz 4cd6773
Merge pull request #1038 from mikepenz/fix/1037
mikepenz aca4eb3
- upgrade all dependencies to their latest stable version
mikepenz 1f304bf
Merge pull request #1039 from mikepenz/feature/upgrade_dependencies_2…
mikepenz ad4c449
- [release] v5.7.0
mikepenz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
BUNDLE_PATH: "vendor/bundle" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,4 @@ proguard/ | |
!.idea/dictionaries | ||
|
||
*.DS_STORE | ||
/vendor/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,95 +1,110 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
package="com.mikepenz.fastadapter.app"> | ||
xmlns:tools="http://schemas.android.com/tools" | ||
package="com.mikepenz.fastadapter.app"> | ||
|
||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
|
||
<application | ||
android:name="com.mikepenz.fastadapter.app.CustomApplication" | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:networkSecurityConfig="@xml/network_security_config" | ||
android:roundIcon="@mipmap/ic_launcher_round" | ||
android:theme="@style/SampleApp.DayNight" | ||
tools:ignore="GoogleAppIndexingWarning"> | ||
android:name="com.mikepenz.fastadapter.app.CustomApplication" | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:networkSecurityConfig="@xml/network_security_config" | ||
android:roundIcon="@mipmap/ic_launcher_round" | ||
android:theme="@style/SampleApp.DayNight" | ||
tools:ignore="GoogleAppIndexingWarning"> | ||
|
||
<uses-library | ||
android:name="org.apache.http.legacy" | ||
android:required="false" /> | ||
android:name="org.apache.http.legacy" | ||
android:required="false"/> | ||
|
||
<!-- android:supportsRtl="true" --> | ||
<activity android:name="com.mikepenz.fastadapter.app.SampleActivity"> | ||
<activity android:name="com.mikepenz.fastadapter.app.SampleActivity" | ||
android:exported="true"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.PagedActivity" | ||
android:label="@string/sample_paged_list" /> | ||
android:name="com.mikepenz.fastadapter.app.PagedActivity" | ||
android:label="@string/sample_paged_list" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.SimpleItemListActivity" | ||
android:label="@string/sample_simple_item_list" /> | ||
android:name="com.mikepenz.fastadapter.app.SimpleItemListActivity" | ||
android:label="@string/sample_simple_item_list" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.SwipeListActivity" | ||
android:label="@string/sample_swipe_list" /> | ||
android:name="com.mikepenz.fastadapter.app.SwipeListActivity" | ||
android:label="@string/sample_swipe_list" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.SwipeDrawerListActivity" | ||
android:label="@string/sample_swipe_drawer_list" /> | ||
android:name="com.mikepenz.fastadapter.app.SwipeDrawerListActivity" | ||
android:label="@string/sample_swipe_drawer_list" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.ImageListActivity" | ||
android:label="@string/sample_image_list" /> | ||
android:name="com.mikepenz.fastadapter.app.ImageListActivity" | ||
android:label="@string/sample_image_list" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.MultiselectSampleActivity" | ||
android:label="@string/sample_multi_select" /> | ||
android:name="com.mikepenz.fastadapter.app.MultiselectSampleActivity" | ||
android:label="@string/sample_multi_select" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.ExpandableSampleActivity" | ||
android:label="@string/sample_collapsible" /> | ||
android:name="com.mikepenz.fastadapter.app.ExpandableSampleActivity" | ||
android:label="@string/sample_collapsible" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.ExpandableMultiselectDeleteSampleActivity" | ||
android:label="@string/sample_collapsible_multi_select_delete" /> | ||
android:name="com.mikepenz.fastadapter.app.ExpandableMultiselectDeleteSampleActivity" | ||
android:label="@string/sample_collapsible_multi_select_delete" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.StickyHeaderSampleActivity" | ||
android:label="@string/sample_sticky_header" /> | ||
android:name="com.mikepenz.fastadapter.app.StickyHeaderSampleActivity" | ||
android:label="@string/sample_sticky_header" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.AdvancedSampleActivity" | ||
android:label="@string/sample_advanced" /> | ||
android:name="com.mikepenz.fastadapter.app.AdvancedSampleActivity" | ||
android:label="@string/sample_advanced" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.IconGridActivity" | ||
android:label="@string/sample_icon_grid" /> | ||
android:name="com.mikepenz.fastadapter.app.IconGridActivity" | ||
android:label="@string/sample_icon_grid" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.ModelItemActivity" | ||
android:label="@string/sample_model_item" /> | ||
android:name="com.mikepenz.fastadapter.app.ModelItemActivity" | ||
android:label="@string/sample_model_item" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.MultiTypeModelItemActivity" | ||
android:label="@string/sample_multi_model_item" /> | ||
android:name="com.mikepenz.fastadapter.app.MultiTypeModelItemActivity" | ||
android:label="@string/sample_multi_model_item" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.CheckBoxSampleActivity" | ||
android:label="@string/sample_checkbox_item" /> | ||
android:name="com.mikepenz.fastadapter.app.CheckBoxSampleActivity" | ||
android:label="@string/sample_checkbox_item" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.RadioButtonSampleActivity" | ||
android:label="@string/sample_radiobutton_item" /> | ||
android:name="com.mikepenz.fastadapter.app.RadioButtonSampleActivity" | ||
android:label="@string/sample_radiobutton_item" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.EndlessScrollListActivity" | ||
android:label="@string/sample_endless_scroll_item" /> | ||
android:name="com.mikepenz.fastadapter.app.EndlessScrollListActivity" | ||
android:label="@string/sample_endless_scroll_item" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.SortActivity" | ||
android:label="@string/sample_sort" /> | ||
android:name="com.mikepenz.fastadapter.app.SortActivity" | ||
android:label="@string/sample_sort" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.MopubAdsActivity" | ||
android:label="@string/sample_mopub" /> | ||
android:name="com.mikepenz.fastadapter.app.RealmActivity" | ||
android:label="@string/sample_realm_list" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.RealmActivity" | ||
android:label="@string/sample_realm_list" /> | ||
android:name="com.mikepenz.fastadapter.app.DiffUtilActivity" | ||
android:label="@string/sample_diff_util" | ||
android:exported="false"/> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.StickyHeaderMopubAdsActivity" | ||
android:label="@string/sample_sticky_header_mopub" /> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.DiffUtilActivity" | ||
android:label="@string/sample_diff_util" /> | ||
<activity | ||
android:name="com.mikepenz.fastadapter.app.DragAndDropActivity" | ||
android:label="Drag & Drop Sample" /> | ||
android:name="com.mikepenz.fastadapter.app.DragAndDropActivity" | ||
android:label="Drag & Drop Sample" | ||
android:exported="false"/> | ||
</application> | ||
</manifest> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
networkSecurityConfig
is only used in API level 24 and higher (current min is 21)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.