├── AndroidManifest.xml ├── Makefile ├── README.md ├── jni ├── add.swift └── hello-swift.c ├── libs └── armeabi-v7a │ └── .keepme ├── project.properties ├── res └── values │ └── strings.xml └── src └── com └── example └── helloswift └── HelloSwift.java /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecco/HelloSwift/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecco/HelloSwift/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecco/HelloSwift/HEAD/README.md -------------------------------------------------------------------------------- /jni/add.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecco/HelloSwift/HEAD/jni/add.swift -------------------------------------------------------------------------------- /jni/hello-swift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecco/HelloSwift/HEAD/jni/hello-swift.c -------------------------------------------------------------------------------- /libs/armeabi-v7a/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecco/HelloSwift/HEAD/project.properties -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecco/HelloSwift/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/example/helloswift/HelloSwift.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecco/HelloSwift/HEAD/src/com/example/helloswift/HelloSwift.java --------------------------------------------------------------------------------