Skip to content

Commit

Permalink
Android Studio 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Agasper committed Nov 7, 2017
1 parent 9210a5c commit e494dca
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 24 deletions.
1 change: 1 addition & 0 deletions PluginSrc/.idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 1 addition & 14 deletions PluginSrc/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions PluginSrc/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 12 additions & 5 deletions PluginSrc/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
apply plugin: 'com.android.library'

allprojects {
repositories {
jcenter()
google()
}
}

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileSdkVersion 27
buildToolsVersion "27.0.1"
defaultConfig {
minSdkVersion 14
targetSdkVersion 25
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand All @@ -23,7 +30,7 @@ dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:appcompat-v7:27.0.0'
testCompile 'junit:junit:4.12'
compile files('libs/classes.jar')
}
Expand All @@ -33,7 +40,7 @@ task deleteOldJar(type: Delete) {
}

task exportJar(type: Copy) {
from('build/intermediates/bundles/default/classes.jar')
from('build/intermediates/bundles/release/classes.jar')
into('release/')
rename('classes.jar', 'notification.jar')
}
Expand Down
Binary file modified PluginSrc/app/release/notification.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion PluginSrc/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"

package="net.agasper.unitynotification">

<application
Expand All @@ -10,6 +9,7 @@
android:supportsRtl="true"
android:theme="@style/AppTheme">

<receiver android:name="net.agasper.unitynotification.UnityNotificationManager"></receiver>
</application>

</manifest>
2 changes: 1 addition & 1 deletion PluginSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'com.android.tools.build:gradle:3.0.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
4 changes: 2 additions & 2 deletions PluginSrc/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Jun 08 15:24:27 MSK 2017
#Wed Nov 08 00:40:52 MSK 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
2 changes: 1 addition & 1 deletion PluginSrc/settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':app'
include ':app', ':mylibrary'

0 comments on commit e494dca

Please sign in to comment.