Skip to content
This repository was archived by the owner on Jan 11, 2024. It is now read-only.

Commit c3e9391

Browse files
author
Aleks Haecky
committedDec 18, 2018
Initial commit for Android Kotlin Fundamentals Starter Apps.
Change-Id: Idffb51c2fbae01a3b17ed546dbf8791e8cb7a89c
1 parent 059442e commit c3e9391

File tree

74 files changed

+2576
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+2576
-1
lines changed
 

‎.gitignore

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
2+
*/.gitignore
3+
.gradle
4+
.DS_Store
5+
6+
# built application files
7+
*.apk
8+
*.ap_
9+
10+
# files for the dex VM
11+
*.dex
12+
13+
# Java class files
14+
*.class
15+
16+
# generated files
17+
bin/
18+
out/
19+
gen/
20+
21+
# Libraries used by the app
22+
# Can explicitly add if we want, but shouldn't do so blindly. Licenses, bloat, etc.
23+
/libs
24+
25+
26+
# Build stuff (auto-generated by android update project ...)
27+
build.xml
28+
ant.properties
29+
local.properties
30+
project.properties
31+
32+
# Eclipse project files
33+
.classpath
34+
.project
35+
36+
# idea project files
37+
.idea/
38+
.idea/.name
39+
*.iml
40+
*.ipr
41+
*.iws
42+
43+
##Gradle-based build
44+
.gradle
45+
build/

‎AboutMeDataBinding-Starter/README.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
Data binding basics - Starter Code
2+
==================================
3+
4+
Use as starter code for the Data binding basics codelab.
5+
This is the same AboutMe app the you built in a previous codelab.
6+
7+
Introduction
8+
------------
9+
10+
This starter app provides the completed AboutMe code.
11+
You will modify the app to use data binding techniques to
12+
eliminate calls to findViewById() and access data directly
13+
from views.
14+
15+
Pre-requisites
16+
--------------
17+
18+
You need to know:
19+
- How to open, build, and run apps with Android Studio.
20+
- How to create a basic app with one Activity and one layout
21+
that uses TextView, ScrollView, Button, EditText, and LinearLayout.
22+
- How to add a click handler to a Button.
23+
24+
Getting Started
25+
---------------
26+
27+
1. Download and run the app.
28+
29+
License
30+
-------
31+
32+
Copyright 2018 Google, Inc.
33+
34+
Licensed to the Apache Software Foundation (ASF) under one or more contributor
35+
license agreements. See the NOTICE file distributed with this work for
36+
additional information regarding copyright ownership. The ASF licenses this
37+
file to you under the Apache License, Version 2.0 (the "License"); you may not
38+
use this file except in compliance with the License. You may obtain a copy of
39+
the License at
40+
41+
http://www.apache.org/licenses/LICENSE-2.0
42+
43+
Unless required by applicable law or agreed to in writing, software
44+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
45+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
46+
License for the specific language governing permissions and limitations under
47+
the License.

0 commit comments

Comments
 (0)
This repository has been archived.