Android Development
implementation 'commons-codec:commons-codec:1.17.0'
implementation 'org.ic4j:ic4j-candid:0.7.0'
implementation('org.ic4j:ic4j-agent:0.7.0') {
exclude group: 'org.apache.httpcomponents.client5', module: 'httpclient5'
}
implementation 'org.slf4j:slf4j-api:2.0.13'<uses-permission android:name="android.permission.INTERNET"/>Use IC4J with Kotlin
actor {
stable var name = "Me";
public func greet(value : Text) : async Text {
name := value;
return "Hello, " # name # "!";
};
public shared query func peek() : async Text {
return name;
};
};Last updated