Skip to content

Instantly share code, notes, and snippets.

View gslahane-zz's full-sized avatar

Gangadhar Lahane gslahane-zz

View GitHub Profile
@gslahane-zz
gslahane-zz / Android Studio .gitignore
Created July 1, 2018 07:35 — forked from iainconnor/Android Studio .gitignore
A .gitignore for use in Android Studio
# Built application files
/*/build/
# Crashlytics configuations
com_crashlytics_export_strings.xml
# Local configuration file (sdk path, etc)
local.properties
# Gradle generated files
@gslahane-zz
gslahane-zz / HelloWorld.java
Created June 14, 2018 03:40
Java Hello world program
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world!!"); // This line with print "Hello world!!"
System.out.println("hey their...")
System.out.println("hey their_2...")
}
}