feat(car): Android Car App Library integration (#5633)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
James Rich
2026-06-03 19:07:59 -05:00
parent 9a0ed4ddf8
commit 578dd1ca1b
51 changed files with 4878 additions and 18 deletions

View File

@@ -14,13 +14,22 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
@file:Suppress("ktlint:standard:max-line-length")
package org.meshtastic.app.di
import org.koin.core.annotation.Module
import org.meshtastic.app.map.prefs.di.GoogleMapsKoinModule
import org.meshtastic.feature.car.di.FeatureCarModule
@Module(
includes =
[GoogleNetworkModule::class, GoogleMapsKoinModule::class, GoogleAiModule::class, AppFunctionsModule::class],
[
GoogleNetworkModule::class,
GoogleMapsKoinModule::class,
GoogleAiModule::class,
AppFunctionsModule::class,
FeatureCarModule::class,
],
)
class FlavorModule