基本信息
源码名称:c#+android 极光推送实例
源码大小:1.23M
文件格式:.zip
开发语言:C#
更新时间:2023-04-18
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍
c# android 极光推送实例
c#调用极光推送往android终端发送消息的实例。 极光推送的ApiKey和APIMasterSecret请在app.config设置。


文件清单
└── 极光推送 c# android实例
    ├── android
    │   ├── AndroidManifest.xml
    │   ├── bin
    │   │   ├── AndroidManifest.xml
    │   │   ├── classes
    │   │   │   └── com
    │   │   │       ├── bentest
    │   │   │       │   ├── BuildConfig.class
    │   │   │       │   ├── Manifest$permission.class
    │   │   │       │   ├── Manifest.class
    │   │   │       │   ├── R$attr.class
    │   │   │       │   ├── R$drawable.class
    │   │   │       │   ├── R$id.class
    │   │   │       │   ├── R$layout.class
    │   │   │       │   ├── R$string.class
    │   │   │       │   ├── R$style.class
    │   │   │       │   └── R.class
    │   │   │       └── example
    │   │   │           └── jpushdemo
    │   │   │               ├── ExampleApplication.class
    │   │   │               ├── ExampleUtil$1.class
    │   │   │               ├── ExampleUtil.class
    │   │   │               ├── MainActivity$MessageReceiver.class
    │   │   │               ├── MainActivity.class
    │   │   │               ├── MyReceiver.class
    │   │   │               ├── PushSetActivity$1.class
    │   │   │               ├── PushSetActivity$2.class
    │   │   │               ├── PushSetActivity$3.class
    │   │   │               ├── PushSetActivity.class
    │   │   │               ├── SettingActivity.class
    │   │   │               └── TestActivity.class
    │   │   ├── classes.dex
    │   │   ├── dexedLibs
    │   │   │   └── jpush-sdk-release1.6.3-fc93eccf91331c3e3edf988b8e92aa6d.jar
    │   │   ├── proguard.txt
    │   │   ├── push-example.apk
    │   │   ├── res
    │   │   │   ├── drawable-hdpi
    │   │   │   │   ├── border_bg.9.png
    │   │   │   │   ├── bottom_bg.9.png
    │   │   │   │   ├── ic_launcher.png
    │   │   │   │   ├── jpush_notification_icon.png
    │   │   │   │   ├── stripes.png
    │   │   │   │   └── top_bg.9.png
    │   │   │   ├── drawable-ldpi
    │   │   │   │   └── ic_launcher.png
    │   │   │   ├── drawable-mdpi
    │   │   │   │   └── ic_launcher.png
    │   │   │   └── drawable-xhdpi
    │   │   │       └── ic_launcher.png
    │   │   └── resources.ap_
    │   ├── gen
    │   │   └── com
    │   │       └── bentest
    │   │           ├── BuildConfig.java
    │   │           ├── Manifest.java
    │   │           └── R.java
    │   ├── libs
    │   │   ├── armeabi
    │   │   │   └── libjpush163.so
    │   │   └── jpush-sdk-release1.6.3.jar
    │   ├── proguard-project.txt
    │   ├── project.properties
    │   ├── res
    │   │   ├── drawable-hdpi
    │   │   │   ├── border_bg.9.png
    │   │   │   ├── bottom_bg.9.png
    │   │   │   ├── corners_bg.xml
    │   │   │   ├── ic_launcher.png
    │   │   │   ├── jpush_notification_icon.png
    │   │   │   ├── stripes.png
    │   │   │   ├── tiledstripes.xml
    │   │   │   └── top_bg.9.png
    │   │   ├── drawable-ldpi
    │   │   │   └── ic_launcher.png
    │   │   ├── drawable-mdpi
    │   │   │   └── ic_launcher.png
    │   │   ├── drawable-xhdpi
    │   │   │   └── ic_launcher.png
    │   │   ├── layout
    │   │   │   ├── customer_notitfication_layout_one.xml
    │   │   │   ├── customer_notitfication_layout.xml
    │   │   │   ├── main.xml
    │   │   │   ├── push_set_dialog.xml
    │   │   │   └── set_push_time.xml
    │   │   ├── values
    │   │   │   ├── strings.xml
    │   │   │   └── style.xml
    │   │   └── values-zh
    │   │       ├── strings.xml
    │   │       └── style.xml
    │   └── src
    │       └── com
    │           └── example
    │               └── jpushdemo
    │                   ├── ExampleApplication.java
    │                   ├── ExampleUtil.java
    │                   ├── MainActivity.java
    │                   ├── MyReceiver.java
    │                   ├── PushSetActivity.java
    │                   ├── SettingActivity.java
    │                   └── TestActivity.java
    └── c#
        ├── Jpushtest
        │   ├── App.config
        │   ├── bin
        │   │   └── Debug
        │   │       ├── Jpushtest.exe
        │   │       ├── Jpushtest.exe.config
        │   │       ├── Jpushtest.pdb
        │   │       ├── Jpushtest.vshost.exe
        │   │       ├── Jpushtest.vshost.exe.config
        │   │       ├── Jpushtest.vshost.exe.manifest
        │   │       └── Newtonsoft.Json.dll
        │   ├── Form1.cs
        │   ├── Form1.Designer.cs
        │   ├── Form1.resx
        │   ├── JpushMsg.cs
        │   ├── Jpushtest.csproj
        │   ├── Newtonsoft.Json.dll
        │   ├── obj
        │   │   └── Debug
        │   │       ├── DesignTimeResolveAssemblyReferences.cache
        │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
        │   │       ├── Jpushtest.csproj.FileListAbsolute.txt
        │   │       ├── Jpushtest.csproj.GenerateResource.Cache
        │   │       ├── Jpushtest.csprojResolveAssemblyReference.cache
        │   │       ├── Jpushtest.exe
        │   │       ├── Jpushtest.Form1.resources
        │   │       ├── Jpushtest.pdb
        │   │       ├── Jpushtest.Properties.Resources.resources
        │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
        │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
        │   │       ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
        │   │       └── TempPE
        │   ├── Program.cs
        │   └── Properties
        │       ├── AssemblyInfo.cs
        │       ├── Resources.Designer.cs
        │       ├── Resources.resx
        │       ├── Settings.Designer.cs
        │       └── Settings.settings
        ├── Jpushtest.sln
        └── Jpushtest.v11.suo

39 directories, 106 files