Skip to content

Commit 398e8a1

Browse files
committed
AGP
1 parent 92b18e9 commit 398e8a1

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// root build.gradle
22
buildscript {
33
ext {
4-
agp_version = '8.0.1'
4+
agp_version = '8.0.2'
55
nav_version = '2.5.3'
66
fragment_version = '1.5.7'
77
room_version = '2.5.1'

mobile/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,11 @@ dependencies {
149149
androidTestImplementation "androidx.test.ext:junit:1.1.5"
150150

151151
// https://mvnrepository.com/artifact/androidx.test
152+
//noinspection GradleDependency
152153
androidTestImplementation "androidx.test:core:1.4.0"
154+
//noinspection GradleDependency
153155
androidTestImplementation "androidx.test:runner:1.4.0"
156+
//noinspection GradleDependency
154157
androidTestImplementation "androidx.test:rules:1.4.0"
155158

156159
// https://mvnrepository.com/artifact/androidx.test.uiautomator/uiautomator
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package io.syslogic.github.adapter;
2+
3+
import android.content.Context;
4+
5+
import androidx.annotation.NonNull;
6+
7+
import io.syslogic.github.R;
8+
9+
/**
10+
* Search-Operator {@link BaseArrayAdapter}
11+
*
12+
* @author Martin Zeitler
13+
*/
14+
public class SearchOperatorAdapter extends BaseArrayAdapter {
15+
16+
public SearchOperatorAdapter(@NonNull Context context) {
17+
super(context);
18+
this.setItems(context, R.array.search_operator_keys, R.array.search_operator_values);
19+
}
20+
}

0 commit comments

Comments
 (0)