You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[libaddressinput] add missing dependencies to gradle build files and update to Gradle 8.2.2
- An internal google update added dependencies only to internal google BUILD files and not the gradle.build file which breaks open source users of this codebase
- Also upgrade the gradle version so modern Android studio users can actually build this
Note: Be sure top replace 'path/to/project' with the name of your project.
60
+
Note: Be sure top replace 'path/to/project' with the name of your project.
66
61
67
62
5. Import both modules into your app.
68
63
69
-
Note: If you use Android Studio, check out the [user guide](https://developer.android.com/studio/projects/android-library.html#AddDependency) and follow the instructions under 'Add your library as a dependency'. Be sure to add *both* modules as dependencies of the app.
64
+
Note: If you use Android Studio, check out the [user guide](https://developer.android.com/studio/projects/android-library.html#AddDependency) and follow the instructions under 'Add your library as a dependency'. Be sure to add *both* modules as dependencies of the app.
70
65
71
66
6. Add the widget to your app. Note: This Assumes a default empty project configuration:
72
67
73
-
i. In activity_main.xml add:
68
+
i. In activity_main.xml add:
74
69
75
-
```
70
+
```xml
76
71
<LinearLayout
77
72
android:id="@+id/addresswidget"
78
73
android:layout_width="match_parent"
79
74
android:layout_height="match_parent"
80
75
android:orientation="vertical"/>
81
76
```
82
77
83
-
ii. In MainActivity.java add the following import statements:
78
+
ii. In MainActivity.java add the following import statements:
0 commit comments