Questions tagged [eula]

In the proprietary software industry, an end-user license agreement or software license agreement is the contract between the licensor and purchaser, establishing the purchaser's right to use the software.

Wiki:

EULA stands for End User License Agreement or software license agreement is a contract between the licensor and purchaser, establishing the purchaser's right to use the software.

The license may define ways under which the copy can be used. Many form contracts are only contained in digital form, and only presented to a user as a click-through where the user must accept the agreement.

Free license:

Unlike EULA, free software licenses do not work as contract to existing legislation. No agreement between parties is ever held, because a copyright license is simply a declaration of permissions on something that otherwise would be disallowed by default under copyright law.

A free software license, also known as open source license, grants users of that software the rights to use for any purpose, modify and redistribute creative works and software, both of which are forbidden by the defaults of copyright, and generally not granted with proprietary software.

Usage:

The tag can be used for programming problems related to license agreement process, for basic and theoretical usage problems of tag you can ask these questions on https://www.superuser.com.

Read more:

62 questions
0
votes
0 answers

Auto accept EULA in bash script

I'm trying to write a bash script that (among other things) installs ubuntu-restricted-extras, but I can't seem to find a proper solution to automatically accept the EULA. This has been suggested in another post: yes | apt-get install -y…
dvilela
  • 1,200
  • 12
  • 29
0
votes
0 answers

EULA License Agreement Dialog not displayed while Upgrade

Using windows installer, the EULA License Agreement Dialog box is displayed when we are installing it for very first time. But while upgrading it is not displayed so how can we do that. I have found one question for this. how to show EULA during…
User1234
  • 1,543
  • 4
  • 22
  • 32
0
votes
1 answer

In IOS how to implement (EULA) when app start first time

recently i published one of the social network app on apps store and it been rejected two times. the issue is require users to agree to terms (EULA). but i already included (EULA) in the app but it not implement to agree from the user, it just…
Prins Prem
  • 121
  • 1
  • 1
  • 14
0
votes
1 answer

vb.net vs2010 project deployment problem: eula.rtf is not displayed during application deployment. Any ideas?

I've created a setup and deployment project for my vb.net application using the Visual Studio 2010 wizard. I also added the eula.rtf file to the setup project and set it to install to the user's application folder. I then added a license agreement…
mazrabul
  • 295
  • 1
  • 5
  • 17
0
votes
1 answer

Localized License Agreements in Visual Studio Setup Projects?

I've added a EULA using VS2005's built in License Agreement UI form in a Setup Project. This form has a LicenseFile property that you set to an RTF file that displays the EULA. Assuming I have a number of translated RTFs, how can I make the EULA…
byanity
  • 203
  • 1
  • 4
  • 14
0
votes
1 answer

Make it appear as if only one activity has launched when implementing a EULA

I'm trying to implement a one time EULA and password creation screen in my app. I strife to do this as clean and seamless as possible. My current implmentation involves a SharedPreference that needs to be set, when it's not, it should display the…
Orion
  • 1,258
  • 2
  • 14
  • 32
0
votes
1 answer

Evenly spread out multiline text across the screen

Theres this one page in my app which shows EULA Heres a sample : This license provides you with limited rights to use the Software. The Owner retains all ownership, right, title and interest in, to and of the Software and all copies of it. All…
Ajinkya
  • 147
  • 1
  • 2
  • 11
0
votes
1 answer

WiX Burn Bootstrapper - is it possible to detect non-interactive mode?

I wish to add a bal:condition to my WiX Boostrapper project to only allow it to continue in quiet mode if the user has specified "AcceptEula=1" on the command line. However, if the installer is run interactively, there is already a checkbox that…
Kram
  • 4,099
  • 4
  • 39
  • 60
0
votes
1 answer

How to confirm the WindowsPhone-Development-Tools' contract that is installed on SurfacePro

I installed the WindowsPhone development's environment on SurfacePro from -> http://dev.windowsphone.com/en-us/downloadsdk -> Windows Phone 8.1 development tools -> If you don’t have Visual Studio 2013, you can install Visual Studio Express 2013…
aaaaa0a
  • 127
  • 2
  • 13
0
votes
1 answer

EULA can be skipped by pressing back button (Android)

I made an Android App that contains an EULA, to make the EULA I used the Dialog class (android.app.Dialog). But when the EULA shows, to not agree to it (escape it) you can press the Back Button which isn't very good and definitely not what I want to…
user2990508
  • 255
  • 1
  • 4
  • 11
0
votes
1 answer

ios App Disclaimer

I am writing an application for iPhone and had some questions regarding eula :- If I do not include any disclaimer/ eula in my app, then would Apple's standard EULA…
Max
  • 4,067
  • 1
  • 18
  • 29
0
votes
2 answers

how to show EULA during upgrade using installshield

the EULA window is enabled through the Interview panel in Installshield 2011, and it works fine when installing the program first time. However, it won't show in the dialog sequence when we do the upgrade. I guess it is a default behaviour in…
Joseph Wu
  • 4,786
  • 1
  • 21
  • 19
0
votes
1 answer

Appstore EULA for particular country

When i try upload my application in appstore ,Rejected for the following reason Thank you for making the app available for us to review. It would now be appropriate to modify your app to restrict it to only those territories for which you hold a…
Fazil
  • 1,390
  • 2
  • 13
  • 26
0
votes
1 answer

Cocos2d for iOS: show EULA in PDF or PNG

I would like to show an EULA in my Cocos2d app. Is there any recommended way in Cocos2d and if so could you guide me to some tutorial? It is a one page document which fits perfectly in a PDF - is there any way to show a PDF on a Cocos2d App? I tried…
mm24
  • 9,280
  • 12
  • 75
  • 170
-1
votes
1 answer

Displaying the settings/EULA and config once only for the Android app depending on the language settings

I have a quick question implementing EULA for Android depending the lanuguage selection. Assume the following scenario: 1) user selects the language may be using the language spinner 2) Depending on the language selection, display the EULA in that…