Skip to content

Commit

Permalink
[artefact][PUSH-17909] implementatin instead of compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Polshcha committed Feb 18, 2019
1 parent 2771a1a commit 41a8dfe
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 23 deletions.
56 changes: 54 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,55 @@
src/ios/PushwooshPlugin.xcodeproj/xcuserdata
# OSX
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
project.xcworkspace
src/ios/build

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# BUCK
buck-out/
\.buckd/
android/app/libs
*.keystore

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
package-lock.json
38 changes: 19 additions & 19 deletions src/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,24 @@ ext {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.facebook.react:react-native:+'
compile "com.pushwoosh:pushwoosh:${pushwoosh}"
compile "com.pushwoosh:pushwoosh-amazon:${pushwoosh}"
compile "com.pushwoosh:pushwoosh-badge:${pushwoosh}"
compile "com.pushwoosh:pushwoosh-gcm:${pushwoosh}"
compile "com.pushwoosh:pushwoosh-inbox:${pushwoosh}"
compile "com.pushwoosh:pushwoosh-inbox-ui:${pushwoosh}"
compile "com.android.support:appcompat-v7:27.+"
compile "com.android.support:recyclerview-v7:27.+"
compile "com.android.support:recyclerview-v7:27.+"
compile "com.android.support:design:27.+"
compile "com.android.support.constraint:constraint-layout:1.0.2"
compile "com.github.bumptech.glide:glide:4.3.1"
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.60"
compile "com.google.android.gms:play-services-gcm:+"
compile "com.google.android.gms:play-services-location:+"
compile "com.google.firebase:firebase-core:+"
compile "com.google.firebase:firebase-messaging:+"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.facebook.react:react-native:+'
implementation "com.pushwoosh:pushwoosh:${pushwoosh}"
implementation "com.pushwoosh:pushwoosh-amazon:${pushwoosh}"
implementation "com.pushwoosh:pushwoosh-badge:${pushwoosh}"
implementation "com.pushwoosh:pushwoosh-gcm:${pushwoosh}"
implementation "com.pushwoosh:pushwoosh-inbox:${pushwoosh}"
implementation "com.pushwoosh:pushwoosh-inbox-ui:${pushwoosh}"
implementation "com.android.support:appcompat-v7:27.+"
implementation "com.android.support:recyclerview-v7:27.+"
implementation "com.android.support:recyclerview-v7:27.+"
implementation "com.android.support:design:27.+"
implementation "com.android.support.constraint:constraint-layout:1.0.2"
implementation "com.github.bumptech.glide:glide:4.3.1"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.60"
implementation "com.google.android.gms:play-services-gcm:+"
implementation "com.google.android.gms:play-services-location:+"
implementation "com.google.firebase:firebase-core:+"
implementation "com.google.firebase:firebase-messaging:+"
}

3 changes: 1 addition & 2 deletions src/android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
<!--<uses-permission-sdk-23 android:name="android.permission.RECEIVE_BOOT_COMPLETED" />-->


<application
android:allowBackup="true">
<application>

<meta-data
android:name="com.pushwoosh.notification_service_extension"
Expand Down

0 comments on commit 41a8dfe

Please sign in to comment.