Skip to content

Commit

Permalink
correct title
Browse files Browse the repository at this point in the history
add missing files
  • Loading branch information
F43nd1r committed Feb 13, 2016
1 parent d6d1cf4 commit 2d1357c
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 1 deletion.
31 changes: 31 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "com.faendir.rhinotest"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
minified.initWith(buildTypes.debug)
minified {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), "proguard-rules.pro"
testProguardFile "test-proguard-rules.pro"
testCoverageEnabled true
}
}
}

dependencies {
compile ('com.faendir.rhino:rhino-android:1.2')
}
19 changes: 19 additions & 0 deletions proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in D:\Programme\Android\SDK/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
-keepattributes Signature
-dontwarn org.mozilla.javascript.**
2 changes: 1 addition & 1 deletion src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
android:supportsRtl="true">
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main">
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand Down

0 comments on commit 2d1357c

Please sign in to comment.