K
K
Kirill Ivanov2020-08-11 22:07:33
Android
Kirill Ivanov, 2020-08-11 22:07:33

How to correctly specify the data of authors of content under a Creative Commons license when publishing an Android application?

Good afternoon. My app uses images and audio files licensed under Creative Commons. As far as I understand, I am obliged to indicate the name of the author, but I do not understand where it should be indicated: in the "About the application" inside the application or in the description of the application on Google Play. Also wondering what other information about the author and/or the content used should I include when posting?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
O
Oleg, 2020-08-11
@402d

In google chrome it is placed like this.
Menu.Settings.About the browser.Legal information.Open source software licenses.
We look that the graphics are in the general stream. Material Design Icons
Can you place it closer. Nr about the program and from there a link.
If you want to play it safe, then
https://support.google.com/googleplay/android-deve...
direct link
https://support.google.com/googleplay/android-deve...
But as far as I know CC is analogous Apache 2.0 and enough that it generates
com.jaredsburrows:gradle-license-plugin for example

V
Viktor Vsk, 2015-03-25
@Castiel

A very strange approach - you are trying to use a class variable in a module, better tell us about the problem and try to find a normal solution.
In general, something like this:

module Magick
  @@name = "SouthEastGravity"
end

class MagickNameGetter
  include Magick
  def self.name
    @@name
  end
end

MagickNameGetter.name

A
Andrew, 2015-04-02
@droff

module Magic
  def self.const_missing(name)
    const_set(name, name)
  end
end

puts Magic::Hello # Hello
puts Magic::World # World

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question