Giter Site home page Giter Site logo

Comments (7)

Alqueraf avatar Alqueraf commented on September 6, 2024

Hey @tmorone-rezi did you find a solution for this?

from flutter-apns.

SinaSeirafi avatar SinaSeirafi commented on September 6, 2024

After some searching, I came across this solution:

I created the file it was looking for and converted the ".java" file to ".kt" using android studio and put it in the same place it was looking for (created all of the folders and so on) and It passed that state.

Here's the Kotlin code:

package com.mwaysolutions.flutter.apns

import io.flutter.plugin.common.MethodCall
import io.flutter.plugin.common.MethodChannel
import io.flutter.plugin.common.MethodChannel.MethodCallHandler
import io.flutter.plugin.common.MethodChannel.Result
import io.flutter.plugin.common.PluginRegistry.Registrar

/** FlutterApnsPlugin  */
class FlutterApnsPlugin : MethodCallHandler {

    @Override
    fun onMethodCall(call: MethodCall, result: Result) {
        if (call.method.equals("getPlatformVersion")) {
            result.success("Android " + android.os.Build.VERSION.RELEASE)
        } else {
            result.notImplemented()
        }
    }

    companion object {
        /** Plugin registration.  */
        fun registerWith(registrar: Registrar) {
            val channel = MethodChannel(registrar.messenger(), "flutter_apns")
            channel.setMethodCallHandler(FlutterApnsPlugin())
        }
    }
}

It might be worth mentioning that I was using the latest flutter stable version at it worked as intended (then using 1.0.2), but after upgrading to Flutter 1.12 (stable), this problem occurred. Perhaps there is a problem with the new Flutter version.

I updated the package to 1.0.4, but it didn't solve the problem.

Not sure if the package still works or it just passes the flutter pub get.
I Will update this post after testing.

from flutter-apns.

tmorone-rezi avatar tmorone-rezi commented on September 6, 2024

No code change is necessary.

The file at this location:
android/src/main/java/com/example/flutter_apns/FlutterApnsPlugin.java

Needs to move to this location:
android/src/main/java/com/mwaysolutions/flutter/apns/FlutterApnsPlugin.java

Our fork is not in a mergeable state right now, otherwise I would put in the PR.

from flutter-apns.

Alqueraf avatar Alqueraf commented on September 6, 2024

Thanks, that works πŸ‘

from flutter-apns.

szotp avatar szotp commented on September 6, 2024

Sorry guys, I have been busy with other stuff. I will apply that fix tomorrow.

from flutter-apns.

szotp avatar szotp commented on September 6, 2024

I just released 1.0.5, let me know if all is ok.

from flutter-apns.

Alqueraf avatar Alqueraf commented on September 6, 2024

Updated and works perfectly, thanks πŸ‘

from flutter-apns.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.