Skip to content
This repository was archived by the owner on May 24, 2022. It is now read-only.

Commit 6387a37

Browse files
committed
update to instant search 2.11.2
1 parent a44c741 commit 6387a37

File tree

7 files changed

+54
-43
lines changed

7 files changed

+54
-43
lines changed

Diff for: build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ buildscript {
22
ext.kotlin_version = "1.5.31"
33
ext.lifecycle_version = "2.2.0"
44
ext.build_tools_version = "31.0.0"
5-
ext.instantsearch = '2.11.1'
5+
ext.instantsearch = '2.11.2'
66
ext.canary = '2.7'
7-
ext.compose_version = '1.0.4'
7+
ext.compose_version = '1.0.5'
88
repositories {
99
mavenCentral()
1010
google()

Diff for: guides/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ apply plugin: 'kotlinx-serialization'
55
apply plugin: 'kotlin-kapt'
66

77
android {
8-
compileSdkVersion 30
8+
compileSdkVersion 31
99
buildToolsVersion build_tools_version
1010
defaultConfig {
1111
applicationId "com.algolia.instantsearch.guides"
1212
minSdkVersion 23
13-
targetSdkVersion 30
13+
targetSdkVersion 31
1414
versionCode 1
1515
versionName "1.0"
1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Diff for: guides/src/main/AndroidManifest.xml

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,41 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
xmlns:tools="http://schemas.android.com/tools"
3-
package="com.algolia.instantsearch.guides">
2+
xmlns:tools="http://schemas.android.com/tools"
3+
package="com.algolia.instantsearch.guides">
44

5-
<uses-permission android:name="android.permission.INTERNET"/>
5+
<uses-permission android:name="android.permission.INTERNET" />
66

77
<application
88
android:allowBackup="false"
99
android:icon="@mipmap/ic_launcher"
1010
android:label="@string/app_name"
1111
android:roundIcon="@mipmap/ic_launcher_round"
1212
android:supportsRtl="true"
13-
android:usesCleartextTraffic="true"
1413
android:theme="@style/InstantSearchShowcase"
14+
android:usesCleartextTraffic="true"
1515
tools:ignore="GoogleAppIndexingWarning">
1616

17-
<activity android:name=".directory.DirectoryActivity">
17+
<activity
18+
android:name=".directory.DirectoryActivity"
19+
android:exported="true">
1820
<intent-filter>
19-
<action android:name="android.intent.action.MAIN"/>
21+
<action android:name="android.intent.action.MAIN" />
2022

21-
<category android:name="android.intent.category.DEFAULT"/>
22-
<category android:name="android.intent.category.LAUNCHER"/>
23+
<category android:name="android.intent.category.DEFAULT" />
24+
<category android:name="android.intent.category.LAUNCHER" />
2325
</intent-filter>
2426
</activity>
2527

26-
<activity android:name=".gettingstarted.GettingStartedGuide"
27-
android:parentActivityName=".directory.DirectoryActivity"/>
28+
<activity
29+
android:name=".gettingstarted.GettingStartedGuide"
30+
android:parentActivityName=".directory.DirectoryActivity" />
2831

29-
<activity android:name=".places.PlacesActivity"
30-
android:parentActivityName=".directory.DirectoryActivity"/>
32+
<activity
33+
android:name=".places.PlacesActivity"
34+
android:parentActivityName=".directory.DirectoryActivity" />
3135

32-
<activity android:name=".querysuggestion.QuerySuggestionGuide"
33-
android:parentActivityName=".directory.DirectoryActivity"/>
36+
<activity
37+
android:name=".querysuggestion.QuerySuggestionGuide"
38+
android:parentActivityName=".directory.DirectoryActivity" />
3439

3540
</application>
3641

Diff for: insights/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ apply plugin: 'kotlin-android-extensions'
44
apply plugin: 'kotlinx-serialization'
55

66
android {
7-
compileSdkVersion 30
7+
compileSdkVersion 31
88
buildToolsVersion build_tools_version
99
defaultConfig {
1010
applicationId "com.algolia.instantsearch.insights.showcase"
1111
minSdkVersion 23
12-
targetSdkVersion 30
12+
targetSdkVersion 31
1313
versionCode 1
1414
versionName "1.0"
1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Diff for: insights/src/main/AndroidManifest.xml

+21-19
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.algolia.instantsearch.insights.showcase">
2+
package="com.algolia.instantsearch.insights.showcase">
33

4-
<uses-permission android:name="android.permission.INTERNET" />
5-
<application
6-
android:name=".App"
7-
android:allowBackup="true"
8-
android:icon="@mipmap/ic_launcher"
9-
android:label="@string/app_name"
10-
android:roundIcon="@mipmap/ic_launcher_round"
11-
android:supportsRtl="true"
12-
android:theme="@style/InsightsTheme"
13-
android:usesCleartextTraffic="true">
4+
<uses-permission android:name="android.permission.INTERNET" />
5+
<application
6+
android:name=".App"
7+
android:allowBackup="true"
8+
android:icon="@mipmap/ic_launcher"
9+
android:label="@string/app_name"
10+
android:roundIcon="@mipmap/ic_launcher_round"
11+
android:supportsRtl="true"
12+
android:theme="@style/InsightsTheme"
13+
android:usesCleartextTraffic="true">
1414

15-
<activity android:name=".DemoActivity">
16-
<intent-filter>
17-
<category android:name="android.intent.category.LAUNCHER" />
15+
<activity
16+
android:name=".DemoActivity"
17+
android:exported="true">
18+
<intent-filter>
19+
<category android:name="android.intent.category.LAUNCHER" />
1820

19-
<action android:name="android.intent.action.MAIN" />
20-
<action android:name="android.intent.action.VIEW" />
21-
</intent-filter>
22-
</activity>
21+
<action android:name="android.intent.action.MAIN" />
22+
<action android:name="android.intent.action.VIEW" />
23+
</intent-filter>
24+
</activity>
2325

24-
</application>
26+
</application>
2527
</manifest>

Diff for: showcase/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ apply plugin: 'kotlin-android-extensions'
44
apply plugin: 'kotlinx-serialization'
55

66
android {
7-
compileSdkVersion 30
7+
compileSdkVersion 31
88
buildToolsVersion build_tools_version
99
defaultConfig {
1010
applicationId "com.algolia.instantsearch.showcase"
1111
minSdkVersion 23
12-
targetSdkVersion 30
12+
targetSdkVersion 31
1313
versionCode 1
1414
versionName "1.0"
1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Diff for: showcase/src/main/AndroidManifest.xml

+6-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
android:supportsRtl="true"
2424
android:theme="@style/InstantSearchShowcase"
2525
tools:ignore="GoogleAppIndexingWarning">
26-
<activity android:name=".directory.DirectoryShowcase">
26+
<activity
27+
android:name=".directory.DirectoryShowcase"
28+
android:exported="true">
2729
<intent-filter>
2830
<action android:name="android.intent.action.MAIN" />
2931

@@ -118,7 +120,9 @@
118120
android:name="com.algolia.instantsearch.showcase.filter.facet.dynamic.DynamicFacetShowcase"
119121
android:parentActivityName=".directory.DirectoryShowcase" />
120122

121-
<activity android:name=".customdata.TemplateActivity">
123+
<activity
124+
android:name=".customdata.TemplateActivity"
125+
android:exported="true">
122126
<intent-filter>
123127
<action android:name="android.intent.action.VIEW" />
124128

0 commit comments

Comments
 (0)