Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Gradle files
.gradle/
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The .kotlin/ directory is used for caching by the Kotlin compiler and scripts. It is already ignored in several sub-directory .gitignore files within this repository (e.g., AdaptiveJetStream/.gitignore). Adding it to the root .gitignore ensures consistent behavior across the project.

.gradle/
.kotlin/

build/

# Local configuration file (sdk path, etc)
local.properties
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security-medium medium

It is a security best practice to ignore secrets.properties, as it is commonly used by the Google Secrets Gradle plugin to store sensitive API keys. Including it in the root .gitignore helps prevent accidental commits of sensitive information.

local.properties
secrets.properties


# Log/OS Files
*.log

# Android Studio generated files and folders
captures/
.externalNativeBuild/
.cxx/
*.aab
*.apk
output-metadata.json

# IntelliJ
*.iml
.idea/
misc.xml
deploymentTargetDropDown.xml
render.experimental.xml
Comment on lines +21 to +24
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The entries misc.xml, deploymentTargetDropDown.xml, and render.experimental.xml are IntelliJ-specific configuration files that are typically stored within the .idea/ directory. Since .idea/ is already being ignored on line 21, these individual entries are redundant and can be removed to keep the .gitignore clean.

.idea/


# Keystore files
*.jks
*.keystore

# Google Services (e.g. APIs or Firebase)
google-services.json

# Android Profiling
*.hprof

.DS_Store
35 changes: 35 additions & 0 deletions .google/packaging.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright (C) 2020 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# GOOGLE SAMPLE PACKAGING DATA
#
# This file is used by Google as part of our samples packaging process.
# End users may safely ignore this file. It has no relevance to other systems.
---
status: PUBLISHED
technologies: [Android, JetpackCompose]
categories:
- AndroidArchitectureUILayer
- JetpackComposeDesignSystems
- JetpackComposeLayouts
- JetpackComposeNavigation
languages: [Kotlin]
solutions:
- Mobile
- JetpackNavigation
github: android/adaptive-apps-samples
level: INTERMEDIATE
apiRefs:
- android:androidx.compose.material3.adaptive
license: apache2
Loading