• This project
    • Loading...
  • Sign in

fastcoding / commonProject

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • commonProject
  • ..
  • player
  • PlayerApplication.java
  • 添加模块 · 3429c014
    3429c014 Browse Files
    wangkai authored 2024-11-08 16:55:29 +0800
PlayerApplication.java 344 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Copyright (c) Wondertek Technologies Co., Ltd. 2019-2022. All rights reserved.
 */

package com.wd.player;

import android.app.Application;

/**
 * 描述:
 *
 * @author : lvjinhui
 * @since: 2022/7/1
 */
public class PlayerApplication extends Application {

    @Override
    public void onCreate() {
        super.onCreate();
    }
}